Line No. | Rev | Author | Line |
---|---|---|---|
1 | 1 | paulosilva | |
2 | {-# OPTIONS_GHC -Wall #-} | ||
3 | |||
4 | ------------------------------------------------------------------------------- | ||
5 | |||
6 | {- | | ||
7 | Module : Main | ||
8 | Description : | ||
9 | Copyright : (c) Paulo Silva | ||
10 | License : LGPL | ||
11 | |||
12 | Maintainer : paufil@di.uminho.pt | ||
13 | Stability : experimental | ||
14 | Portability : portable | ||
15 | |||
16 | <description of the module> | ||
17 | -} | ||
18 | |||
19 | ------------------------------------------------------------------------------- | ||
20 | |||
21 | |||
22 | module Main where | ||
23 | |||
24 | import Galculator.Interpreter | ||
25 | |||
26 | ------------------------------------------------------------------------------- | ||
27 | |||
28 | main :: IO () | ||
29 | main = interactiveUI | ||
30 | |||
31 | ------------------------------------------------------------------------------- |