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

16 lines
173 B
Plaintext

//
// $Id$
//
// Testing SET
function Main()
local n, NEWLINE := CHR (10) + CHR(13)
for n := 1 to 39
outstd (NEWLINE)
outstd (set (n))
next
return nil