Skip to content

Instantly share code, notes, and snippets.

@copenhas
Created December 31, 2010 02:50
Show Gist options
  • Select an option

  • Save copenhas/760657 to your computer and use it in GitHub Desktop.

Select an option

Save copenhas/760657 to your computer and use it in GitHub Desktop.
{ok, Tokens, _EndLine} = lexical:string("2 + 1 * 3").
{ok, Ast} = grammar:parse(Tokens).
Program = generator:generate(Ast).
vm:start().
vm:load(Program).
vm:stop().
receive {return, Value} => Value end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment