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

192 B
Raw Blame History

General

A C2file starts with a module declaration followed by other declarations.

For instance:

module mymodule;

import libc.stdio;

void main() {
	puts("Hello, world!");
}

.