Files
harbour-core/harbour/tests/fornext2.prg
1999-10-04 18:46:41 +00:00

28 lines
246 B
Plaintext

//
// $Id$
//
// 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