===== Program Syntax ===== test {{page>statementsprogramsyntax}} {{page>labelprogramsyntax}} {{page>compoundstatementprogramsyntax}} === Example === The following is a sample program that shows single line statements, compound statements, and use of a label. print "hello "; gosub world end world: ### print out world print "w"; print "o";: print "r";: print chr(asc("a")+11); print right('Dd',1) return