Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titlePrint()
print("Hello world")
 
#output below
> print("hello world")
[1] "hello world"
Info
titleInformation: Print()

According to the manual, the print command has the usage

print(x..)

Function_name(arg1)
where x is “Hello world”

...