home *** CD-ROM | disk | FTP | other *** search
- /* SCROLLH.PRO */
-
- global predicates
- scroll_left(integer,integer,integer,integer) - (i,i,i,i) language asm
-
- predicates
- scrollh
-
- clauses
- scrollh :-
- makewindow(_,_,_,_,Row,Col,Nrows,Ncols),
- scroll_left(Row,Col,Nrows,Ncols),
- readchar(C),
- char_int(C,CI),
- not(CI =27),
- scrollh.
-
- goal
- makewindow(1,7,7," Eine rollende Meldung ",10,20,4,60),
- write("Diese Mitteilung wird über den ganzen Schirm gerollt"),nl,
- write("Sehen Sie wie sie davonläuft"),
- readchar(_),
- scrollh,
- readchar(_).
-