Manlio Perillo
Manlio Perillo
> Is there any prediction on when the feature will be included again? I suspect that it will take some time, since *async* **requires** *Result Location Semantics* but currently this...
Never mind: the API change is isolated to `std.Build.
> BTW, I want to write an exercise about testing in Zig. That means I need a new flag `run_test` to activate a test step. Do you have an idea...
In commit ziglang/zig@3f3b1a680, `std.Build.XyzStep` have been deprecated for `std.Build.Step.Xyz. In future, this will be a real incompatible API change, but it will probably take a long time (see the still...
I did not see your PR. I solved the problem by watching all activity on ziglings.
What about renaming `REUSE.toml` to `license.toml`? Thanks.
The last example is incorrect (and undefined behavior), since the slice share the same memory from the array.
Here is an alternative test, taking advantage of improved error reports. ```yaml note: | This is a note ``` ```console debug(tokenizer): Tokenizer.Token{ .id = Tokenizer.Token.Id.literal, .loc = Tokenizer.Token.Loc{ .start =...
The problem is that the tokens `|`, `>` and `%` are not supported (`%` is not a priority). Additionally, I think that the `comma` token should also include the lexeme...
@matu3ba Thanks for the clarification. Just some additional info: 1. About the global/local cache: currently the problem is that I don't want cached data to be written where user data...