A language where you can create your own loops like
loop repeatUntil {
if condition {
stop
}else {
run
}
}
The condition keyword is the condition that is put into the loop, the stop keyword tells the loop to break, and the run keyword runs the code you put in your loop. Also the loop keyword is for defining loops and after that in this example, repeatuntil, is the name of your loop.
Another cool idea. I'm calling it simplified condition statements. To use this you have to write a term and an optional bool operator in front of the if then statement:
myVar == if
Say you are going to use that term and operator a lot in an if then statement you could just do this
What is your wildest programming language idea? This could be fun (silly) ideas or really cool and useful ones.
Go!
Also on le twatter: https://twitter.com/replit/status/1275525512861900800
A language where you can create your own loops
like
The condition keyword is the condition that is put into the loop, the stop keyword tells the loop to break, and the run keyword runs the code you put in your loop. Also the loop keyword is for defining loops and after that in this example, repeatuntil, is the name of your loop.
Another cool idea. I'm calling it simplified condition statements.
To use this you have to write a term and an optional bool operator in front of the if then statement:
Say you are going to use that term and operator a lot in an if then statement you could just do this
This translates to
It much easier to do it the first way. Also you can remove the operator and just do something like this
You can also override the operator
Also to exclude variables from this put the conditions in a loop like this ex():