home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / utility / m4.zoo / hanoi.m4 < prev    next >
Text File  |  1988-08-05  |  192b  |  8 lines

  1. define(hanoi, `trans(A, B, C, $1)')
  2.  
  3. define(moved,`move disk from $1 to $2
  4. ')
  5.  
  6. define(trans, `ifelse($4,1,`moved($1,$2)',
  7.     `trans($1,$3,$2,DECR($4))moved($1,$2)trans($3,$2,$1,DECR($4))')')
  8.