Skip to content

Instantly share code, notes, and snippets.

@marks
Created August 31, 2010 15:37
Show Gist options
  • Save marks/559213 to your computer and use it in GitHub Desktop.
Save marks/559213 to your computer and use it in GitHub Desktop.
<?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>
<?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