### test_tail passes new PMCs in a tailcall to list. .sub list .param pmc array :slurpy .return (array) .end .sub test_tail ## Note that these objects are only referenced by this context. $P60 = new Integer $P60 = 99 $P61 = new Integer $P61 = 100 .return list($P60, $P61) .end .sub test :main test_tail() print "Done.\n" .end