Logo

Programming-Idioms

History of Idiom 2 > diff from v1 to v2

Edit summary for version 2 by :

Version 1

2015-05-06, 21:04:45

Version 2

2015-07-31, 18:46:09

Idiom #2 Print Hello 10 times

Loop to execute some code a constant number of times

Idiom #2 Print Hello 10 times

Loop to execute some code a constant number of times

Code
print "Hello\n" for 1 .. 10;