Files
harbour-core/harbour-RC1/tests/while.prg
2008-06-04 05:13:20 +00:00

16 lines
124 B
Plaintext

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