home *** CD-ROM | disk | FTP | other *** search
Text File | 1985-07-25 | 561 b | 38 lines | [TEXT/YERK] |
- 0 value dlevel
-
- : (val")
- r> dup 4+ >r @ count $ 3F and type 32 emit 32 emit
- r> dup count + align >r count type
- dup .
- cr
- ;
-
- : val" ( -- )
- dlevel
- IF
- compile (val")
- latest ,
- word" c@ 1+ align allot
- ELSE
- word" drop
- THEN
- ; immediate
-
- : (msg")
- r> dup 4+ >r @ count $ 3F and type 32 emit 32 emit
- r> dup count + align >r count type
- cr
- ;
-
- : msg"
- dlevel
- IF
- compile (msg")
- latest ,
- word" c@ 1+ align allot
- ELSE
- word" drop
- THEN
- ; immediate
-
-