home *** CD-ROM | disk | FTP | other *** search
- %=========================== sleep ============================
- /*
- Example for : MARKTIME, TIMEOUT, SLEEP
- */
- PREDICATES
- ttimeout(real)
-
- CLAUSES
- ttimeout(TM):- timeout(TM), !.
- ttimeout(TM):-
- write("\nNo timeout, sleep 0.5 secs"),
- sleep(50),
- ttimeout(TM).
-
- GOAL
- write("Mark time for four secs and timeout"),
- marktime(400,TM),
- ttimeout(TM),
- write("\nBINGO\n").
-