home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 2 / 2611 / iperlsh < prev    next >
Encoding:
Text File  |  1991-01-25  |  152 b   |  11 lines

  1. #!./iperl
  2.  
  3. # Poor man's perl intercal shell.
  4.  
  5. # input a mathematical expression, and its value will be printed
  6.  
  7. while (<>)
  8. {
  9.     print eval($_), "\n\n";
  10. }
  11.