situation <> { setup { display("Hi"); } enter { display("start pre"); goAhead(); display("start post"); } } function goAhead() { display("goAhead() pre"); goto( <> ); display("goAhead() post"); } situation <> { enter { display("This is next."); } }