sub pr(x) if x>0 then print x;" "; call pr(x-1) end if end sub call pr(130)