home *** CD-ROM | disk | FTP | other *** search
- ********************************
- * SPEED1.PRG *
- * Written By Gregory A. Martin *
- ********************************
-
- * This example clocks the time taken to complete the simple test in a
- * single-user application.
-
- USE Speed
-
- Second1 = SECONDS()
-
- FOR Temp = 1 TO 10000
- SKIP 1
- SKIP -1
- NEXT Temp
-
- ? "Done...", SECONDS() - Second1
-
- USE
- RETURN