7 lines
118 B
Text
7 lines
118 B
Text
|
|
module HelloWorld {
|
||
|
|
void run() {
|
||
|
|
@Inject Console console;
|
||
|
|
console.print("Hello, World!");
|
||
|
|
}
|
||
|
|
}
|