!7 cmodule AlarmTimeDialog > DynSayAndInputBot { class Bot extends AbstractSayAndInputBot2 implements Runnable { public void run { say("When should the alarm ring?"); S s = input(); say("OK, ringing at " + s); } } start { runBot(new Bot); } }