On Sunday, 23 January 2022 at 03:24:04 UTC, Paul Backus wrote:

The way I envision it, `std` would be the "rolling release" namespace that allows breaking changes, and if you wanted stability, you'd have to explicitly depend on `std.vN`. What we currently call `std` would be renamed to `std.v1`.

module test;

@require("std.v2");
import std.stdio; // std is now std.v2

void main(){ }

Reply via email to