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

19 lines
178 B
Plaintext

//
// $Id$
//
// while loop test
function Main()
local i := 0
local cb := {|| QOut("test")}
while i < 1000
QOut(i)
eval(cb)
i++
end
return nil