3 lines
102 B
R
3 lines
102 B
R
|
|
apply(data.frame(letters[1:3], LETTERS[1:3], 1:3), 1,
|
||
|
|
function(row) { cat(row, "\n", sep='') })
|