Skip to content

Instantly share code, notes, and snippets.

@iamPedroVictor
Created May 5, 2017 03:46
Show Gist options
  • Save iamPedroVictor/f79722648624f03869b91974fb319c8b to your computer and use it in GitHub Desktop.
Save iamPedroVictor/f79722648624f03869b91974fb319c8b to your computer and use it in GitHub Desktop.
Grammar grammar = new Grammar(); //Usando o construtor publico para poder gerar o objeto.
//Criar as regras dentro do objeto grammar.
grammar.PushRules("Test", new string[] { "Hello, #name#!" });
grammar.PushRules("name", new string[] { "Max", "world", "Pedro", "Henrique" });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment