* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
21 lines
203 B
Plaintext
21 lines
203 B
Plaintext
|
|
PROCEDURE Main()
|
|
|
|
LOCAL i
|
|
|
|
FOR i := 1 TO 10
|
|
|
|
? i
|
|
|
|
IF i == 4 .AND. .T.
|
|
Inkey( 0 )
|
|
? i
|
|
i := 9
|
|
? i
|
|
Inkey( 0 )
|
|
ENDIF
|
|
|
|
NEXT
|
|
|
|
RETURN
|