Build it.
[AROS-Contrib.git] / rexx / progs / bugintr.r
bloba33e22963d56fb3588ead93d0072facaae055bfa
1 /* here it is a bug of interpret */
2 say "Calling PROCEDURE with INTERPRET"
3 interpret 'call proc'
4 say 'Normal CALL of the PROCEDURE'
5 call proc
6 say 'Procedure Finished'
7 exit
9 proc:
10 say 'we are doing INTERPRET "return"'
11 interpret 'return'
13 proc2:
14 say 'It should not come here!!'
15 return