Files
harbour-core/harbour/tests/working/testfor.prg
Ron Pinkas 4a3d771041 19990603-00:00 PST Ron Pinkas
* hvm.c
    - Changed VitualMachine() to use direct dynamic call for processing pcodes rather than       the switch loop.
1999-06-03 08:06:44 +00:00

20 lines
223 B
Plaintext

FUNCTION MAIN
LOCAL i
FOR i := 1 TO 10
qout( i )
IF i = 4 .AND. .T.
__Accept("")
qout(i)
i := 9
qout(i)
__Accept("")
ENDIF
NEXT
RETURN( NIL )