Forked from anonymous/gist:15042bf07555e7ed9934
Created
August 5, 2014 08:28
Revisions
-
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ data TType = TypeInt | TypeBool | TypeVec TType data TExpr a where TInt :: Int -> TExpr Int TBool :: Bool -> TExpr Bool TIVar :: StrictText -> TExpr Int TBVar :: StrictText -> TExpr Bool TSum :: [TExpr Int] -> TExpr Int TVecGet ::