```{r} 1:5 ``` ``` [1] 1 2 3 4 5 ``` ```{r} data.frame(x = 1:3, y = letters[1:3]) ``` ``` x y 1 1 a 2 2 b 3 3 c ``` ```{r} cat('Line 1\n') print('Text output') cat('Line 2\n') ``` ``` Line 1 [1] "Text output" Line 2 ```