RosettaCodeData/Task/Loops-Foreach/R/loops-foreach.r

3 lines
65 B
R
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
a <- list("First", "Second", "Third", 5, 6)
for(i in a) print(i)