Re: Question about displaying text
Robert Patten <[email protected]>
| Newsgroups | gmane.comp.lang.forth.colorforth |
|---|---|
| Message-ID | <[email protected]> |
\ untested var s 2 ( hello world ) \ s number of cells in() : stype ( a-) dup @ for 1 + @ dup f and if space then drop : type ( an-) fffffff0 and unpack if emit type ; then drop next drop ; : ok show text s stype keyboard ;