RosettaCodeData/Task/Integer-sequence/R/integer-sequence.r

6 lines
40 B
R
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
z <- 0
repeat {
print(z)
z <- z + 1
}