home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / source / p3_14dc.seq < prev    next >
Text File  |  1990-04-05  |  161b  |  8 lines

  1. \ Problem 3.14 by Dickson Cheng  04/05/90 10:54:40.79
  2.  
  3. : EVEN          ( n -- flag )
  4.         2 MOD IF FALSE
  5.               ELSE TRUE
  6.               THEN ;
  7.  
  8.