Hello, print

print and comments.

print writes. # comments.

Goal

Print three lines, including a comment.

print("Hello, R")
print("Swiftener playground")
# ignored
print("Ada")
print("Alan")
city <- "Nairobi"
print(city)
print(1 + 2)
print(paste0(1, 2))