diff options
author | Julien Dessaux | 2022-05-05 22:28:07 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-05-05 22:28:07 +0200 |
commit | 582bfc893c01cccec0aae7ea7eec18bcf97cd836 (patch) | |
tree | 3822ac4b2490fc3249093e3866d1615e20eaf470 /src/main.zig | |
parent | Finished implementing the funge field (diff) | |
download | zigfunge98-582bfc893c01cccec0aae7ea7eec18bcf97cd836.tar.gz zigfunge98-582bfc893c01cccec0aae7ea7eec18bcf97cd836.tar.bz2 zigfunge98-582bfc893c01cccec0aae7ea7eec18bcf97cd836.zip |
Fixed a misunderstanding about allocations (I did too much go and nim!)
Diffstat (limited to 'src/main.zig')
-rw-r--r-- | src/main.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig index 6f63b8d..14bada3 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,5 +1,6 @@ const std = @import("std"); const field = @import("field.zig"); +const pointer = @import("pointer.zig"); const stackStack = @import("stackStack.zig"); pub fn main() anyerror!void { |