a6bdadac0c
Co-authored-by: Copilot <copilot@github.com>
15 lines
192 B
Markdown
15 lines
192 B
Markdown
# General
|
||
A C2–file starts with a module declaration followed by other declarations.
|
||
|
||
For instance:
|
||
|
||
```c2
|
||
module mymodule;
|
||
|
||
import libc.stdio;
|
||
|
||
void main() {
|
||
puts("Hello, world!");
|
||
}
|
||
```
|
||
. |