1 <?xml version="1.0" encoding="ISO8859-1" ?> 2 <grammar xml:lang="en-us" version="1.0" mode="speech" root="myRoot"> 3 <!-- 4 Root slot grammar, this is an empty grammar that can be used when 5 all the content is to be added at runtime. The return value for 6 semantic meaning is 'V', and items should be added to the grammar 7 with a semantic tag such as V='45' or V='do-it-now' 8 --> 9 10 <rule id="myRoot" scope="public"> 11 <item> <ruleref uri="#Name"/> <tag>V=Name.V;</tag> </item> 12 </rule> 13 14 <rule id="Name" scope="public"> 15 <item>__Name__ </item> 16 </rule> 17 18 </grammar> 19