Pooh program example 01-hello-world.p
# hello world sub showit( theMsg) println( ~msg theMsg ) end showit( ~theMsg 'Hello world' )
Hello worldTrace output for 01-hello-world.p
007|showit( ~theMsg 'Hello world' )... 004| println( ~msg theMsg:'Hello world' )...