Files
c3discovery/helloworld2/hello.c3
T
2026-04-24 08:22:52 +00:00

10 lines
105 B
C3

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