RosettaCodeData/Task/Flow-control-structures/REXX/flow-control-structures-8.rexx

8 lines
120 B
Rexx
Raw Permalink Normal View History

2014-01-17 05:32:22 +00:00
Say 'Interrupt this program after a short while'
Call on halt
Do i=1 To 10000000
j=i**2+1
End
halt: Say i j
Return