mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-08 07:48:47 +00:00
Added comments
This commit is contained in:
parent
e78e108dd4
commit
30ebe2605c
1 changed files with 6 additions and 1 deletions
|
|
@ -46,7 +46,12 @@ module Expr =
|
||||||
*)
|
*)
|
||||||
let eval _ = failwith "Not implemented yet"
|
let eval _ = failwith "Not implemented yet"
|
||||||
|
|
||||||
(* Statement parser *)
|
(* Expression parser. You can use the following terminals:
|
||||||
|
|
||||||
|
IDENT --- a non-empty identifier (a-zA-Z[a-zA-Z0-9_]*) as a string
|
||||||
|
DECIMAL --- a decimal constant [0-9]+ as a string
|
||||||
|
|
||||||
|
*)
|
||||||
ostap (
|
ostap (
|
||||||
parse: empty {failwith "Not implemented yet"}
|
parse: empty {failwith "Not implemented yet"}
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue