; the print command prints textual output to the Console window. print("hiho!") print( between(60, 90)) ; to print more than one clause separate each expression by a comma: print("my random key: ", between(60, 90)) ; a single print command can span more than one line print( pick("Bach", "Berg", "Brahms"), " is a ", pick("great", "german", "dead"), " composer.") ; print commands can be grouped using begin begin with root = between(60,90) print("root=", root) print("third=", root + 4) print("fifth=", root + 7) end ; print commands can be repeated using loop loop repeat 10 for r = between(60,90) print("my random key: ", r) end