Below is the syntax highlighted version of helloworld.py
from §1.1 Hello World.
#----------------------------------------------------------------------- # helloworld.py #----------------------------------------------------------------------- import stdio # Write 'Hello, World' to standard output. stdio.writeln('Hello, World') #----------------------------------------------------------------------- # python helloworld.py # Hello, World