Project setup

This commit is contained in:
2026-04-24 09:29:53 +02:00
parent c90f3afd95
commit c73f99d9e6
9 changed files with 69 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
# General
A C2file starts with a module declaration followed by other declarations.
For instance:
```c2
module mymodule;
import libc.stdio;
void main() {
puts("Hello, world!");
}
```