Created
May 5, 2017 03:46
-
-
Save iamPedroVictor/f79722648624f03869b91974fb319c8b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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