Files
c2/specs/GENERAL.md
2026-04-25 15:28:33 +02:00

15 lines
192 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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!");
}
```
.