home *** CD-ROM | disk | FTP | other *** search
-
-
- \ This stack print will print double numbers that are on the stack.
- \ If there is an odd number of numbers on the stack or if the stack
- \ has a mixed combination of singles and doubles you are likely to
- \ get confusing results.
- : .SD ( -- )
- DEPTH ?DUP IF
- 0 ?DO DEPTH I - 1- PICK
- DEPTH I - 2- PICK
- D. 8 EMIT ASCII . EMIT
- 2 +LOOP
- ELSE ." Empty" THEN ;
-
-