RosettaCodeData/Task/Hello-world-Text/Ecstasy/hello-world-text.ecstasy

7 lines
118 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
module HelloWorld {
void run() {
@Inject Console console;
console.print("Hello, World!");
}
}