summaryrefslogtreecommitdiff
path: root/ProofGraphMain.hs
blob: 514dbc3eca6651e422d94ec25a25fe08b0dc63a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
import System.Environment( getArgs )
import Text.Printf
import Parse
import ProofGraph


main = do
    args <- getArgs
    list <- getLines (head args)
    let result = doGraphGen (map (stripReturn) list)
    printf $ (show result) ++ "\n"