|
Two new statements simplify the iteration over sets of objects and string vectors.
To loop over each object in a SimSet, use the foreach statement:
foreach( %obj in %set ) /* do something with %obj */;
To loop over each element in a string vector, use the foreach$ statement:
foreach$( %str in "a b c" ) /* do something with %str */;
foreach Statement foreach$ Statement