-
Notifications
You must be signed in to change notification settings - Fork 2
_for
abinition edited this page Oct 22, 2014
·
6 revisions
#for
###Iterative 'for' statement.
Syntax
for ( expression1; expression2; expression3 ) statement ;
Description
The for verb is sugar for
expression1 ; while ( expression2 ) { statement; expression3; }
Examples
on_alarm {
puts { "Reached ", i, ", or ", (float(i)/3)," iterations per second." } ;
exit ;
}
alarm 3 ;
global i ;
for ( i=0; i<100000; i++ ) ;
Related Links