Added second hello world

This commit is contained in:
=
2026-04-24 08:22:52 +00:00
parent 98692e6f2e
commit f7b81d525a
2 changed files with 10 additions and 0 deletions
BIN
View File
Binary file not shown.
+10
View File
@@ -0,0 +1,10 @@
module hello;
import std::io;
fn int main(String[] args)
{
io::printn("Hello, World!");
return 0;
}