AEL has implementations of 'for' and 'while' loops.
NOTE: The conditional expression (the "${y} = 0" above) is wrapped in $[ ] so it can be evaluated. NOTE: The for loop test expression (the "$x 3" above) is wrapped in $[ ] so it can be evaluated.
AEL has implementations of 'for' and 'while' loops.
NOTE: The conditional expression (the "${y} = 0" above) is wrapped in $[ ] so it can be evaluated. NOTE: The for loop test expression (the "$x 3" above) is wrapped in $[ ] so it can be evaluated.
2 Comments
Erol Oz
There are some minor issues with the NOTEs.
I think:
"${y} = 0" should be "${y} >= 0"
"wrapped in $[ ]" should be "wrapped in ${ }"
"$x 3" should be "${x} < 3"
Or I am missing something as an AEL newbie.
jrun
been 2 years and no correction! please clarify.