Add an implementation of Zig's Allocator interface (#94)

This commit is contained in:
Mike Will 2024-05-21 10:12:20 -04:00 committed by GitHub
parent b5330624d6
commit 39909cdcb3
Failed to generate hash of commit
4 changed files with 184 additions and 0 deletions

View file

@ -163,6 +163,11 @@ pub fn build(b: *std.Build) !void {
};
const examples = [_]Program{
.{
.name = "raw_stream",
.path = "examples/audio/raw_stream.zig",
.desc = "Plays a sine wave",
},
.{
.name = "basic_screen_manager",
.path = "examples/core/basic_screen_manager.zig",