home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / source / p3_14bs.seq < prev    next >
Text File  |  1990-04-07  |  254b  |  17 lines

  1. \ Balraj Sidhu   Set: 14D4
  2. \ Comp 462 - Forth
  3. \ Date: April 7, 1990
  4. \ Problem 3.14
  5.  
  6. \ leaves a true flag is n is even, otherwise false if n is odd.
  7.  
  8. : even ( n -- flag )
  9.         1 and
  10.         if false
  11.         else true
  12.         then ;
  13.  
  14.  
  15.  
  16.  
  17.