5 lines
84 B
Text
5 lines
84 B
Text
sub sisyphus( n as ulongint )
|
|
print n
|
|
sisyphus( 1 + n )
|
|
end sub
|
|
sisyphus(0)
|