Hello, print

(print ...) and comments.

(print ...) writes. ; comments.

Goal

Print three lines, including a comment.

(print "Hello, Scheme")
(print "Swiftener playground")
; ignored
(print "Ada")
(print "Alan")
(print "Nairobi")
(print 12)
(print (+ 1 2))
(print (string-append "1" "2"))