* /harbour/* -> /*
* moved whole Harbour source tree one level up to
avoid single 'harbour' top dir
16 lines
124 B
Plaintext
16 lines
124 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
// while loop test
|
|
|
|
PROCEDURE Main()
|
|
|
|
LOCAL x := 0
|
|
|
|
DO WHILE x++ < 1000
|
|
? x
|
|
ENDDO
|
|
|
|
RETURN
|