home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
forth
/
compiler
/
fpc
/
source
/
p3_13bs.seq
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-04-07
|
324 b
|
17 lines
\ Balraj Sidhu Set: 14D4
\ Comp 462 - Forth
\ Date: April 7, 1990
\ Problem 3.13
: test ( n -- )
cr dup ." The Number " . ." Is A "
dup 0>
if ." Positive "
else 0=
if ." Zero" abort
else ." Negative "
then
then ." Number" ;