home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Demo / turing / inc.tm < prev    next >
Text File  |  1994-03-02  |  278b  |  8 lines

  1. <1, 'a'> --> <1, R>    ; Given a number as a sequences of a's increase it
  2. <1, ' '> --> <0, 'a'>    ; by one
  3.  
  4. <1, 'S'> --> <1, R>    ; given a number of the form SSSSS...SSS0
  5. <1, '0'> --> <2, 'S'>    ; add another S
  6. <2, 'S'> --> <2, R>    ; go right one
  7. <2, ' '> --> <0, '0'>    ; append the zero
  8.