On Wednesday 06 October 2004 18:37, Sam Ruby wrote: > How does one create a sub named "num"? ÂOr a local pmc named "num"? There is no syntax support for it. You can fetch a sub PMC and store it with another name:
.sub main @MAIN $P0 = global "_num" global "num" = $P0 end .end .sub _num print "num\n" .end jens
