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

12 lines
109 B
Plaintext

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