Skip to content

Instantly share code, notes, and snippets.

@Diullei
Created June 18, 2011 18:07
Show Gist options
  • Select an option

  • Save Diullei/1033348 to your computer and use it in GitHub Desktop.

Select an option

Save Diullei/1033348 to your computer and use it in GitHub Desktop.
// exemplo de código...
namespace EasySyntax.TestProject
{
public class MyGramar : Grammar
{
public MyGramar()
{
Nonterminal("digt",
Or("0", "1", "2", "3", "4", "5", "6", "7", "8", "9"));
Nonterminal("number",
Expr.digt.OrMore());
Nonterminal("dot",
Symbol("."));
Nonterminal("dbl",
And(Expr.number, Expr.dot, Expr.number));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment