Pyrolistical
Pyrolistical
This doesn't work as expected on mac/safari as discussed in this other issue. [> [Mac/safari] will work, but use normal canvas without offscreen and web worker](https://github.com/ai/offscreen-canvas/issues/31#issuecomment-1013018932) So then this isn't...
Implemented [OpenVR SDK](https://github.com/ValveSoftware/openvr) as `zopenvr` lib. `zopenvr` is a wip. See its readme for implemented interfaces. Add two samples: 1. `openvr_test`: a zgui app that allows one to manually make...
### Zig Version 0.13.0-dev.46+3648d7df1 ### Steps to Reproduce and Observed Behavior Env: Windows 11 Version 10.0.22631 Build 22631 Repo: https://github.com/Pyrolistical/dynlib-struct-pass-by-value-repo Run `zig build run` Outputs: ``` main main.SomeStruct{ .x =...
fixes #19841
As its not possible to define `func` in adapter modules, it it illegal to write `(func (export "exp"))`. However since we are allowed to define modules and instances, the inline...
if you want the first `.next(0.1)` to work with `yield`, you can just wrap the generator and just drop the first `.next` on the floor ```js const skipFirstYield = (generator)...
### Zig Version 0.13.0-dev.73+db890dbae ### Steps to Reproduce and Observed Behavior Missing case for https://github.com/ziglang/zig/issues/18924 ```zig const std = @import("std"); const expectEqual = std.testing.expectEqual; test "ref to anon array init...
I really like block params as it would generalize the syntax https://github.com/tc39/proposal-pattern-matching is trying to add. Which happens to what I incidentally did using with [patcom](https://github.com/concept-not-found/patcom#comparision-of-tc39-pattern-matching-proposal-on-left-to-patcom-on-right) [See example](https://github.com/samuelgoto/proposal-block-params/issues/45#issuecomment-1066171236) ~~We could...