#7297 introduced a handy way to print time durations:
test"example" {
std.debug.print("{}", .{std.fmt.duration(1234)}); }This proposal is to delete std.fmt.Duration and std.fmt.duration and make it format character(s) such as {dt}:
test"example" {
std.debug.print("{dt}", .{1234}); }
#7297 introduced a handy way to print time durations:
This proposal is to delete
std.fmt.Durationandstd.fmt.durationand make it format character(s) such as{dt}: