1" A comment
2
3:py print "py"
4::pyt print 'pyt'
5  pyth	print '''pyth'''
6 : pytho print "pytho"
7python print """python"""
8
9  : : python<<E OF
10print """my script"""
11
12def MyFunc(str):
13  """ My Function """
14  print str
15E OF
16
17let py = 42
18echo py
19
20let foo = 42
21echo foo
22