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