2023-02-26 00:50

This commit is contained in:
2023-02-26 00:50:25 +09:00
commit 286ce4a4fa
57 changed files with 46323 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
class HelloWorld {
public static int main(string[] args) {
string str = "Hello, World\n";
stdout.printf(str);
return 0;
}
}