Skip to content

Instantly share code, notes, and snippets.

@pafmaf
Created May 13, 2014 17:27
Show Gist options
  • Save pafmaf/7f77933594e6b126627d to your computer and use it in GitHub Desktop.
Save pafmaf/7f77933594e6b126627d to your computer and use it in GitHub Desktop.
datatype symbol = String of string;
datatype expr = binOp of etype * binOps * etype
| singleOp of ops * etype
| Tuple of expr list
| Selektion of etype * expr
| Konditional of expr * expr * expr
| Applikation of expr * expr
| Abstraktion of symbol * expr
| Fixpunkt of symbol * symbol * expr;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment