Files
harbour-core/harbour/tests/working/fornext2.prg
Antonio Linares 974bc2fbc2 make files
1999-05-05 05:45:23 +00:00

24 lines
231 B
Plaintext

// Testing Harbour For Next loops
function Main()
local n
for n = 1 to Limit() Step Step()
QOut( n )
next
return nil
function Limit()
QOut( "Limit" )
return 10
function Step()
QOut( "Step" )
return 2