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
for
define a = 0 for a < 1024: a = a + 1 ! echo ${a}
Then it will echo number bigger than 1024, which is because the condition a < 1024 hasn't been recaculated.
1024
a < 1024
The text was updated successfully, but these errors were encountered:
DaddyTrap
No branches or pull requests
Then it will echo number bigger than
1024
, which is because the conditiona < 1024
hasn't been recaculated.The text was updated successfully, but these errors were encountered: