Just want to say it might be easier to put your on_describe {} blocks inside the page directly....
For pages, I made on_describe {} implicit inside the {}.
001_start : page "You are in a room." {
: add_choice "Choice text 1" {
// Do something
}
: add_choice "Choice text 2" {
// Do something
}
: add_choice "Choice text 3" {
// Do something
}
: choose "Choose ..." ;
}