mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-27 09:08:48 +00:00
Fixed compilation error.
This commit is contained in:
parent
e56efaa9b7
commit
61a7b7b2ce
2 changed files with 2 additions and 4 deletions
|
|
@ -32,7 +32,7 @@ let eval _ = failwith "Not yet implemented"
|
|||
|
||||
Takes an input stream, a program, and returns an output stream this program calculates
|
||||
*)
|
||||
let run i p = let (_, (_, _, o)) = eval ([], (Syntax.Expr.empty, i, [])) p in o
|
||||
let run i p = let (_, (_, _, o)) = eval ([], (Language.Expr.empty, i, [])) p in o
|
||||
|
||||
(* Stack machine compiler
|
||||
|
||||
|
|
@ -42,5 +42,3 @@ let run i p = let (_, (_, _, o)) = eval ([], (Syntax.Expr.empty, i, [])) p in o
|
|||
stack machine
|
||||
*)
|
||||
let compile _ = failwith "Not yet implemented"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue