mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
71 lines
2.3 KiB
OCaml
71 lines
2.3 KiB
OCaml
|
|
(* Opening a library for generic programming (https://github.com/dboulytchev/GT).
|
||
|
|
The library provides "@type ..." syntax extension and plugins like show, etc.
|
||
|
|
*)
|
||
|
|
open GT
|
||
|
|
|
||
|
|
(* Simple expressions: syntax and semantics *)
|
||
|
|
module Expr =
|
||
|
|
struct
|
||
|
|
|
||
|
|
(* The type for expressions. Note, in regular OCaml there is no "@type..."
|
||
|
|
notation, it came from GT.
|
||
|
|
*)
|
||
|
|
@type t =
|
||
|
|
(* integer constant *) | Const of int
|
||
|
|
(* variable *) | Var of string
|
||
|
|
(* binary operator *) | Binop of string * t * t with show
|
||
|
|
|
||
|
|
(* Available binary operators:
|
||
|
|
!! --- disjunction
|
||
|
|
&& --- conjunction
|
||
|
|
==, !=, <=, <, >=, > --- comparisons
|
||
|
|
+, - --- addition, subtraction
|
||
|
|
*, /, % --- multiplication, division, reminder
|
||
|
|
*)
|
||
|
|
|
||
|
|
(* State: a partial map from variables to integer values. *)
|
||
|
|
type state = string -> int
|
||
|
|
|
||
|
|
(* Empty state: maps every variable into nothing. *)
|
||
|
|
let empty = fun x -> failwith (Printf.sprintf "Undefined variable %s" x)
|
||
|
|
|
||
|
|
(* Update: non-destructively "modifies" the state s by binding the variable x
|
||
|
|
to value v and returns the new state.
|
||
|
|
*)
|
||
|
|
let update x v s = fun y -> if x = y then v else s y
|
||
|
|
|
||
|
|
(* Expression evaluator
|
||
|
|
|
||
|
|
val eval : state -> t -> int
|
||
|
|
|
||
|
|
Takes a state and an expression, and returns the value of the expression in
|
||
|
|
the given state.
|
||
|
|
*)
|
||
|
|
let eval _ = failwith "Not implemented yet"
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
(* Simple statements: syntax and sematics *)
|
||
|
|
module Stmt =
|
||
|
|
struct
|
||
|
|
|
||
|
|
(* The type for statements *)
|
||
|
|
@type t =
|
||
|
|
(* read into the variable *) | Read of string
|
||
|
|
(* write the value of an expression *) | Write of Expr.t
|
||
|
|
(* assignment *) | Assign of string * Expr.t
|
||
|
|
(* composition *) | Seq of t * t with show
|
||
|
|
|
||
|
|
(* The type of configuration: a state, an input stream, an output stream *)
|
||
|
|
type config = Expr.state * int list * int list
|
||
|
|
|
||
|
|
(* Statement evaluator
|
||
|
|
|
||
|
|
val eval : config -> t -> config
|
||
|
|
|
||
|
|
Takes a configuration and a statement, and returns another configuration
|
||
|
|
*)
|
||
|
|
let eval _ = failwith "Not implemented yet"
|
||
|
|
|
||
|
|
end
|