let statementsIt's a fancy way of saying that let statements can now be used without specifying a type after the colon. Tact will infer the type from the value of expression on the right.
// Now you can omit the obvious:
let a = 42;
let b = 27;
let c = a + b; // nice
// Explicit approach continues to work:
let d: Int = a + b; // also nice
🧑🍳 Contributor: Gusarich
🐙 Implementation: #198
🍽 To be released in: v1.4.0
🍲 Hey, that's my type!
♨️ @tact_kitchen
