* *
% remove brandings and homepage from copyright header. Pass 2 - semi-auto.
* project homepage and name is described in README, amongst others
; this should make the diff between 3.4 and 3.2 easier to manage
24 lines
382 B
Plaintext
24 lines
382 B
Plaintext
/* Test Seconds() */
|
|
|
|
/* Donated to the public domain on 2001-03-08 by David G. Holm <dholm@jsd-llc.com> */
|
|
|
|
PROCEDURE Main( cParam )
|
|
|
|
LOCAL n, limit := 10
|
|
|
|
CLS
|
|
|
|
IF ! Empty( cParam )
|
|
limit := Val( cParam )
|
|
ENDIF
|
|
? Seconds()
|
|
FOR n := 1 TO limit
|
|
IF Empty( cParam )
|
|
? "Pause:"
|
|
Inkey( 0 )
|
|
ENDIF
|
|
? Seconds()
|
|
NEXT
|
|
|
|
RETURN
|