fix module idents coding

This commit is contained in:
Ilya Rezvov
2018-03-20 16:51:58 -07:00
parent 13fecfe74b
commit 4bf66b9295
2 changed files with 10 additions and 10 deletions
-1
View File
@@ -60,7 +60,6 @@ main = do
let Right mod = Parser.parseModule <$> Lexer.scanner content
(modInst, store) <- Interpreter.instantiate Interpreter.emptyStore Interpreter.emptyImports mod
(`mapM` ["fac-rec", "fac-rec-named", "fac-iter", "fac-iter-named", "fac-opt"]) $ \fn -> do
-- (`mapM` ["fac-iter-named"]) $ \fn -> do
let fac = \n -> Interpreter.invokeExport store modInst fn [Interpreter.VI64 n]
fac3 <- fac 3
fac5 <- fac 5