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

6 lines
40 B
R
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
z <- 0
repeat {
print(z)
z <- z + 1
}