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