Zen C uses type inference by default. var x = 42; // Inferred as int const PI = 3.14159; // Compile-time constant var explicit: float = 1.0; // Explicit type ...