Files
harbour-core/tests/seconds.prg
Viktor Szakats 3ed9fa0f45 2016-01-14 19:33 UTC+0100 Viktor Szakats (vszakats users.noreply.github.com)
* *
    % 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
2016-01-14 19:35:07 +01:00

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