8 lines
155 B
Text
8 lines
155 B
Text
module WhatTimeIsIt {
|
|
@Inject Clock clock;
|
|
@Inject Console console;
|
|
|
|
void run() {
|
|
console.print($"current time: {clock.now}");
|
|
}
|
|
}
|