Comments
When writing code in any language, it is typically useful to include comments which clarify what the code is doing. In steve, there are two ways to include comments in code. A "single line" comment starts with a "#" is and continues to the end of the line; "multiline comments" are written starting with "#!" and ending with "!#". Some example of both kinds of comments are shown below:
# this is a simple one-line comment.
print "this is not a comment...". # but this is.
#!
this
is
a
multiline
comment
!#
