aboutsummaryrefslogtreecommitdiff
path: root/src/main.zig
diff options
context:
space:
mode:
authorJulien Dessaux2022-05-05 22:28:07 +0200
committerJulien Dessaux2022-05-05 22:28:07 +0200
commit582bfc893c01cccec0aae7ea7eec18bcf97cd836 (patch)
tree3822ac4b2490fc3249093e3866d1615e20eaf470 /src/main.zig
parentFinished implementing the funge field (diff)
downloadzigfunge98-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.zig1
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 {