R is a programming language commonly used for statistical computing and data analysis.
“Hello, World!” program in R, here it is:
First R Program:
print (“Hello world!”)
Output:
[1] “Hello world!”
Save this code in a file with a “.R” extension, and you can run it using an R interpreter to see the output “Hello, World!” displayed on the screen.
Input:
print (“Hello World!”, quote-FALSE)
Output:
[1] Hello World!
Input:
print (paste (“Welcome”,”to”,”my”, “first”,”program”))
Output:
[1] “Welcome to my first program”