This commit is contained in:
itamar 2026-04-10 00:18:10 +02:00
commit ebaed617a9
Signed by: itamar
SSH key fingerprint: SHA256:Dv6UzB9hN8q8FUgMR/7X3DTFpE/vSB2m05+KNnxM4B0
4 changed files with 329 additions and 0 deletions

11
Main.hs Normal file
View file

@ -0,0 +1,11 @@
module Main where
import System.Environment (getArgs)
import Interpreter (interFile)
main :: IO ()
main = do
args <- getArgs
case args of
[path] -> interFile path
_ -> putStrLn "Usage: lambda-calc <file_path>"