Derp McDerp
Derp McDerp
If this proposal gets implemented, you can special case "constructor" syntax for functions with no name so we can get rid of the `.init` convention: ``` const Vec2 = struct...
cpp2 uses the following syntax: `name: type = expr;` and allows you to omit at most one: ``` name := expr; // define name, type is inferred name: type; //...
One major problem with this proposal is that sometimes type predicates are dependent on others, e.g. `Day` should be dependent on `Month` and `Year` in the example given in this...
The most common negative case scenario is that you put `Set-StrictMode -Version latest` at the top of the script but then selectively disable it in certain tiny regions of code...
This proposal would be more useful if there was a way for the `using` in the `begin` block to be `Dispose()`d in the `end` block. i.e. ``` begin { using...