This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const std = @import("std"); | |
| const assert = std.debug.assert; | |
| const Allocator = std.mem.Allocator; | |
| const Io = std.Io; | |
| pub fn main() !void { | |
| var debug_allocator: std.heap.DebugAllocator(.{}) = .init; | |
| const gpa = debug_allocator.allocator(); | |
| //const gpa = std.heap.smp_allocator; |