Manlio Perillo
Manlio Perillo
@Vexu, indeed it does not need to be `0`. In order for the `read` example to work, it just needs to be a valid pointer. Thanks.
@leecannon, I think https://github.com/ziglang/zig/issues/6706 should solve this problem. Current behavior does not feels right, to me. You can not get the address of `[0]u`, but you can coerce it to...
It seems that there is another "unexpected" behavior with empty slices: ```zig test "empty slice ptr from zero bit array" { const a: [0]u8 = [_]u8{}; var b: []u8 =...
The support table is now only available in release notes: https://ziglang.org/learn/overview/#wide-range-of-targets-supported. The problem is that the document is using an old release (0.8.0). The links should be automatically updated at...
The article https://go.dev/blog/get-familiar-with-workspaces uses the term `root module` in the first paragraph, but later use the term `main module` in * `use`: adds a module on disk to the set...
Users shouldn't use `go tool dist test` directly, but the default value of the `-run` flag is `$GOTESTONLY`.
It is ok for Julia to not follow XDG, however it is a nice thing to allow users to change the default directories used by Julia from the configuration file,...
@theclapp, thanks for the clarification. The bug seems to be in https://github.com/gopherjs/gopherjs/blob/master/compiler/natives/reflect/reflect.go#L824 It's calling the Field method on a value that it is not a field. This is done only...
Ok, it seems that this is a feature not a bug. I was using the js tag for a different purpose: http://www.gopherjs.org/playground/#/fwEbVIaNUI
I tested the example on Linux, with Zig stage1 version 0.10.0-dev.2306+50a5ddecc and with Zig stage2 version 0.10.0-dev.2117+e8c85450f and it works correctly. @windows-h8r, can you check if it also works for...