Skip to content

Instantly share code, notes, and snippets.

@PollRobots
Last active December 11, 2015 06:49
Show Gist options
  • Select an option

  • Save PollRobots/4562201 to your computer and use it in GitHub Desktop.

Select an option

Save PollRobots/4562201 to your computer and use it in GitHub Desktop.
type Expression =
| Terminal of string
| NonTerminal of string
| Epsilon
| Sequence of Expression list
| Choice of Expression list
| ZeroOrMore of Expression
| OneOrMore of Expression
| Optional of Expression
| And of Expression
| Not of Expression
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment