7 lines
181 B
Text
7 lines
181 B
Text
|
config const numMessages = 100;
|
||
|
|
||
|
forall msg in 1..numMessages do
|
||
|
writeln("Hello, world! (from iteration ", msg, " of ", numMessages, ")");
|
||
|
|
||
|
// Oh, and a comment for good measure.
|