module WhatTimeIsIt {
@Inject Clock clock;
@Inject Console console;
void run() {
console.print($"current time: {clock.now}");
}