home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
PROG
/
MISC
/
FPCL1_7.ZIP
/
L3.ZIP
/
P3-12BS.SEQ
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-04-07
|
414 b
|
25 lines
\ Balraj Sidhu Set: 14D4
\ Comp 462 - Forth
\ Date: April 7, 1990
\ Problem 3.12
: test ( n -- )
cr dup ." The Number " . ." Is An "
dup 2/ 2* =
if ." Even "
else ." Odd "
then ." Number" ;
: test1 ( n -- )
cr dup ." The Number " . ." Is An "
1 and
if ." Odd "
else ." Even "
then ." Number" ;