11 lines
311 B
R
11 lines
311 B
R
|
> # We can use the print() function
|
||
|
> print("Hello World!")
|
||
|
[1] "Hello World!"
|
||
|
|
||
|
> # Quotes can be suppressed in the output
|
||
|
> print("Hello World!", quote = FALSE)
|
||
|
[1] Hello World!
|
||
|
|
||
|
> # If there are more than 1 item, we can concatenate using paste()
|
||
|
> print(paste("How","are","you?"))
|
||
|
[1] "How are you?"
|