Files
postscript-compiler/instrs.ml
T
2023-02-24 15:18:30 +01:00

16 lines
229 B
OCaml

(* Datatypes for Postscript instructions *)
open Lang
type instr =
IVal of value
| IVar of int
| IOper of string
| IBloc of instr
| ISeq of instr list
| ILoop of instr
| IDef of fname * instr
let string_of_instr instr = ""