types.ml 257 B

12345678910111213141516
  1. type instruction =
  2. | Basic of char
  3. | Terminate
  4. | Ptest of char
  5. | Ntest of char
  6. | Jump of int
  7. | Concat of instruction list
  8. | Repeat of instruction
  9. | Program of char
  10. | Empty
  11. type program = instruction list
  12. exception FatalError of string