We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Som syntax ideas for loops:
Python:
for x in range(10): print(x)
This language:
Start a counter at zero, and repeat the following ten times: show the counter
while true: print(“loops up”)
repeat the following forever: Show loops up
while true: if x == true: break
repeat the following forever: if the value of x is true, then: stop the loop
Not sure whether any of these are readable, but that’s for discussion to decide right?
The text was updated successfully, but these errors were encountered:
The slightly less well known equivalent of while, until instead continues executing while the condition is false:
while
until
(modern languages like python and C do not have a direct anaglogue)
while x != 2: print(x)
verboscript:
repeat the following until x is equal to two: show x.
Sorry, something went wrong.
No branches or pull requests
Som syntax ideas for loops:
For loops
Python:
This language:
While
Python:
This language:
break
Python:
This language:
Not sure whether any of these are readable, but that’s for discussion to decide right?
The text was updated successfully, but these errors were encountered: