Comments¶ Single line comments¶ Single line comments begin with a #. # this will print "hello" println("hello") Block comments¶ Block comments begin with /# and end with #/. /# remove the first forward slash to uncomment this block. :) fn hello() println "Hello, World!" end hello() #/