home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / a / armforth / !Forth / Forth / demos / demo < prev    next >
Encoding:
Text File  |  1990-05-30  |  184 b   |  15 lines

  1. : test
  2.     15 0 do
  3.             i colour
  4.             { hello world }
  5.             type
  6.             refresh
  7.          loop
  8. ;
  9. : wait 100000 0 do loop ;
  10. 12 vdumode
  11. test
  12. wait
  13. 15 vdumode
  14. test
  15.