summaryrefslogtreecommitdiff
path: root/Concat.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Concat.hs')
-rw-r--r--Concat.hs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Concat.hs b/Concat.hs
new file mode 100644
index 0000000..f822bcf
--- /dev/null
+++ b/Concat.hs
@@ -0,0 +1,16 @@
+import System( getArgs )
+import Text.Printf
+import Parse
+import ProofGraph
+import WriteProof
+
+
+
+main = do
+ args <- getArgs
+ x <- getLines $ args!!0
+ y <- getLines $ args!!1
+ let list = x ++ y
+ graph = doGraphGen (map (stripReturn) list)
+ trace = doWriteProof graph
+ output trace