lambda-calc/Main.hs
2026-04-10 00:18:10 +02:00

11 lines
229 B
Haskell

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>"