Created my blinky proect

This commit is contained in:
=
2026-04-26 17:40:57 +00:00
parent 77120de661
commit b883d8a021
11 changed files with 55 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
module blinky;
import std::io;
fn int main(String[] args)
{
io::printn("Hello, World!");
return 0;
}