This repository has been archived on 2022-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
compilateurMIPS/ast.ml
2022-12-06 22:22:48 +01:00

11 lines
167 B
OCaml

module Syntax = struct
type expr =
| Int of
{ value : int
; pos : Lexing.position
}
end
module IR = struct
type expr = Int of int
end