This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {- | |
| This program takes an expression from the user in infix, | |
| converts it to postfix, and evaluates it. | |
| Written in Haskell | |
| By Delerina Hill | |
| Compiled and run using WinGHCi | |
| -} | |
| -- | Main entry point to the application. | |
| module Main where |