home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
forth
/
compiler
/
fpc
/
source
/
p3_14bs.seq
< prev
next >
Wrap
Text File
|
1990-04-07
|
254b
|
17 lines
\ Balraj Sidhu Set: 14D4
\ Comp 462 - Forth
\ Date: April 7, 1990
\ Problem 3.14
\ leaves a true flag is n is even, otherwise false if n is odd.
: even ( n -- flag )
1 and
if false
else true
then ;