!7 cmodule BotCheckerBot > DynSingleFunctionWithPrintLog { start { setFunctionName("Check all the bots"); } void doIt { forEach(list("all the bots"), bot -> { print("Would check bot: " + bot); }); } L list(S what) { throw todo("list " + what); } }