RosettaCodeData/Task/Nested-function/R/nested-function.r

8 lines
206 B
R
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
MakeList <- function(sep)
{
counter <- 0
MakeItem <- function() paste0(counter <<- counter + 1, sep, c("first", "second", "third")[counter])
cat(replicate(3, MakeItem()), sep = "\n")
}
MakeList(". ")