8 lines
112 B
R
8 lines
112 B
R
|
|
print("Hello, World!")
|
||
|
|
|
||
|
|
a <- 5
|
||
|
|
b <- 3
|
||
|
|
sum <- a + b
|
||
|
|
|
||
|
|
# disgusting
|
||
|
|
cat("The sum of", a, "and", b, "is", sum, "\n")
|