diff options
Diffstat (limited to 'app/Main.hs')
-rw-r--r-- | app/Main.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs index 004d079..9c62589 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -14,7 +14,9 @@ transpile = do let term = fromBLC file putStrLn $ "input: " ++ show term let ski = transpileSKI term - putStrLn $ "transpiled: " ++ show ski + putStrLn $ "SKI transpiled: " ++ show ski + let birb = transpileBirb ski + putStrLn $ "Birb transpiled: " ++ show birb return () reduce :: IO () |