Skip to content

Instantly share code, notes, and snippets.

@jchavarri
Created September 29, 2017 23:15
Show Gist options
  • Select an option

  • Save jchavarri/16e638556095b1b556ddf43ec851f082 to your computer and use it in GitHub Desktop.

Select an option

Save jchavarri/16e638556095b1b556ddf43ec851f082 to your computer and use it in GitHub Desktop.
Reason tutorial: automaton
type tokenMachine = {
current: option token,
parsed: list token
};
let machine = {current: None, parsed: []};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment