open Blub open BlubParser open System.IO open System [] let main argv : int = (* Check for proper usage *) if argv.Length <> 1 && argv.Length <> 2 then printfn "Usage: dotnet run [debug]" exit 1 (* read in the input file *) let file = argv.[0] let input = File.ReadAllText file (* does the user want parser debugging turned on? *) let do_debug = if argv.Length = 2 then true else false (* try to parse what they gave us *) let ast_maybe = parse input do_debug (* try to evaluate what we parsed... or not *) match ast_maybe with | Some ast -> eval ast Map.empty |> ignore 0 | None -> printfn "Invalid program." 1