Files
harbour-core/harbour/tests/working/while.prg

16 lines
124 B
Plaintext

//
// $Id$
//
// while loop test
function Main()
local x := 0
while x++ < 1000
QOut( x )
end
return nil