Files
c3discovery/helloworld2/hello.c3
T
2026-04-24 14:28:28 +00:00

11 lines
107 B
C3

module hello;
import std::io;
fn int main(String[] args)
{
io::printn("Hello, World!");
return 0;
}