<?xml version="1.0"?>
<vxml version="2.0">
<meta name="maintainer" content="
yourname@yourserver.com"/>
<property name="loglevel" value="3"/>
<property name="metricslevel" value="2"/>
<property name="bargein"
value="false"/>
<form id="Choices">
<field name="choice">
<prompt>
Please choose from the following:
To add a course, say add.
To drop a course, say drop.
To check your schedule, say check.
</prompt>
<grammar>
add | drop | check
</grammar>
<noinput>
I didn't hear you. <reprompt/>
</noinput>
<nomatch>
I didn't quite understand you.
<reprompt/>
</nomatch>
<filled>
<if cond="choice=='add'">
OK let's add a course.
<elseif cond="choice=='drop'"/>
OK let's drop a course.
<else/>
OK let's check your schedule.
</if>
</filled>
</field>
</form>
</vxml>