diff options
Diffstat (limited to 'tests/opttest.stage')
| -rw-r--r-- | tests/opttest.stage | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/opttest.stage b/tests/opttest.stage new file mode 100644 index 0000000..325a197 --- /dev/null +++ b/tests/opttest.stage | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | option situation <<start>> | ||
| 2 | { | ||
| 3 | option: "Begin the game" | ||
| 4 | { | ||
| 5 | display("the game has begun."); | ||
| 6 | } | ||
| 7 | |||
| 8 | option: "I'm not ready yet" | ||
| 9 | { | ||
| 10 | display("Yup, that's what I thought."); | ||
| 11 | } | ||
| 12 | |||
| 13 | option: "Quit the game" | ||
| 14 | { | ||
| 15 | display("Ok...fine..."); | ||
| 16 | exit(); | ||
| 17 | } | ||
| 18 | } | ||
