Programmer: Bill McQuain CS 2704 Homework 2: Parsing a Script File -------------------------------------------------- Command: precedes foo bar False: foo >= bar -------------------------------------------------- Command: equals x-ray x-ray True: x-ray == x-ray -------------------------------------------------- Command: follows foo bar True: foo > bar -------------------------------------------------- Command: precedes 173 873 True: 173 < 873 -------------------------------------------------- Command: follows 93 47 True: 93 > 47 -------------------------------------------------- Command: equals 89 32 False: 89 != 32 -------------------------------------------------- Command: min 47 43 29 32 Minimum: 29 -------------------------------------------------- Command: exit Exiting... --------------------------------------------------