Variable Declaration

Int i as variable declaration,
very much as in C/C++ (and Java, C#).

TypeName variableName

Some simplifications and restrictions:

Examples

Const

const always binds to the right (contrary to C/C++).

Type Inference

with var / const:

Not Allowed

It is a syntax error to write:

Bit Fields