This repository has been archived on 2026-05-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2025-09-14 10:32:47 -04:00

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")