407 B
407 B
Types
C2 has both built-in types and user-defined types.
Builtin types
C2 has the following types builtin:
voidi8i16i32i64u8u16u32u64
Type Aliases
Types can be aliased to different names using the alias keyword. Here's a list of the default builtin aliases.
alias int = i32;
alias uint = u32;
alias char = u8;
alias string = char[];