Loops/For with a specified step: Difference between revisions

Content added Content deleted
(Add Racket example)
Line 675:
}
cat("who do we appreciate?\n")</lang>
 
=={{header|Racket}}==
 
<lang racket>
#lang racket
 
(for ([i (in-range 2 9 2)])
(printf "~a, " i))
(printf "who do we appreciate?~n")
</lang>
 
=={{header|REBOL}}==