Files
c2/specs/GENERAL.md
T
2026-04-24 09:29:53 +02:00

191 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!");
}