Created
August 31, 2010 03:14
-
-
Save marks/558486 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
| answer() | |
| ask("Welcome to the Tropo company directory. Who are you trying to reach?", [ | |
| choices: "department(support, engineering, sales), person(jose, jason, adam)", | |
| onChoice: { event-> | |
| switch(event.value) { | |
| case "department": | |
| log("Department info: $event.choice.interpretation") | |
| break | |
| case "person": | |
| log("Person info: $event.choice.interpretation") | |
| break | |
| } | |
| } | |
| ]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment