Toy programs I wrote to learn racket.
Caclulator evaluates infix arithmetic expressions by parsing the input and applying order of operations.
Queue uses two lists to create a queue with ammortized constant remove operations, rather than the O(n) naive implementation.