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

16 lines
124 B
Plaintext

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