Skip to content

Instantly share code, notes, and snippets.

View Delerina's full-sized avatar

Delerina H Delerina

View GitHub Profile
@Delerina
Delerina / Haskell - infix to postfix
Created July 12, 2015 19:13
This haskell program takes an expression from the user in infix, converts it to postfix, and evaluates it.
{-
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