Zag-Smalltalk icon indicating copy to clipboard operation
Zag-Smalltalk copied to clipboard

Smalltalk VM Written in Zig with methods stored as type-annotated ASTs

Results 4 Zag-Smalltalk issues
Sort by recently updated
recently updated
newest added

This is a tracking issue for upstream Zig. (see [Third Party Tracking Issues](https://github.com/ziglang/zig/wiki/Third-Party-Tracking-Issues-(what-is-important-to-other-people%3F))) Overall, Zig is really great and its cross-compilation abilities are great, but some (planned) proposals and bug...

Any clues about how to compile/use this project?

``` cd zig/zag zig test -freference-trace --test-filter fubar arenas.zig ``` output ``` arenas.zig:69:26: error: struct 'arenas.Arena' depends on itself pub const Arena = extern struct { ~~~~~~~^~~~~~ referenced by: NurseryArena(509):...

Re: https://www.youtube.com/watch?v=iw4FPqe8KdY&t=1093s 22:05 to 36:05 The above section of Martin McClure's Mist video describes a very simple, fast, exponential memory model involving binary-powers-of-2-sized bins for allocating objects. We need not...