!7 cmodule PhilosophyBot2 extends DynPrintLog { transient S program = [[ start true start => proc { while (true): print "I am here" } ]]; transient new PhilosophyBot1 bot; start-thread { bot.program = program; bot.run(); } }