mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 23:08:46 +00:00
Typo
This commit is contained in:
parent
7678510c1f
commit
57ccfa2352
1 changed files with 2 additions and 2 deletions
|
|
@ -94,9 +94,9 @@ type t = Stmt.t
|
||||||
|
|
||||||
(* Top-level evaluator
|
(* Top-level evaluator
|
||||||
|
|
||||||
eval : int list -> t -> int list
|
eval : t -> int list -> int list
|
||||||
|
|
||||||
Takes a program and its input stream, and returns the output stream
|
Takes a program and its input stream, and returns the output stream
|
||||||
*)
|
*)
|
||||||
let eval i p =
|
let eval p i =
|
||||||
let _, _, o = Stmt.eval (Expr.empty, i, []) p in o
|
let _, _, o = Stmt.eval (Expr.empty, i, []) p in o
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue