Logo

Programming-Idioms

History of Idiom 2 > diff from v57 to v58

Edit summary for version 58 by wobray:
New Lisp implementation by user [wobray]

Version 57

2018-03-04, 08:35:26

Version 58

2018-03-06, 16:07:00

Idiom #2 Print Hello 10 times

Loop to execute some code a constant number of times

Illustration

Idiom #2 Print Hello 10 times

Loop to execute some code a constant number of times

Illustration
Code
(dotimes (x 10)
	(write-line "Hello"))