Created
August 31, 2010 15:37
-
-
Save marks/559213 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
<?xml version= "1.0"?> | |
<grammar xmlns="http://www.w3.org/2001/06/grammar" | |
xml:lang="en-US" root = "MYRULE"> | |
<rule id="MYRULE" scope="public"> | |
<one-of> | |
<item>james brown </item> </one-of> | |
</rule> | |
</grammar> | |
<?xml version= "1.0"?> | |
<grammar xmlns="http://www.w3.org/2001/06/grammar" | |
xml:lang="en-US" root = "MYRULE"> | |
<rule id="MYRULE" scope="public"> | |
<one-of> | |
<!-- In case you forgot, James Brown is the answer to everything --> | |
<item>james brown </item> | |
</one-of> | |
</rule> | |
</grammar> |
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
<?xml version= "1.0"?> | |
<grammar xmlns="http://www.w3.org/2001/06/grammar" xml:lang="en-US" root="MYRULE"> | |
<rule id="MYRULE" scope="public"> | |
<one-of> | |
<item> james brown </item> | |
<item> huey lewis </item> | |
<item> stevie ray vaughn </item> | |
</one-of> | |
</rule> | |
</grammar> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment