On Friday, 4 April 2025 at 13:46:45 UTC, Nick Treleaven wrote:
> Using single module imports (or avoiding std) works!
Actually it requires `import std.typecons;` otherwise you get:
```
/home/nick/os/tupdip.d(6): Error: undefined identifier `std`
auto (x, y, z) = (1, 2, 3);
^
```
Probably that should be automatic.