diff options
author | Julien Dessaux | 2022-07-30 00:29:59 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-07-30 00:29:59 +0200 |
commit | 35c2f5e6261f2c1bfc9f0cc890421f1f6d9dce71 (patch) | |
tree | d219cc34b7faa82c1b0860492c4270efe708375b /src | |
parent | Refactored io functions handling (diff) | |
download | zigfunge98-35c2f5e6261f2c1bfc9f0cc890421f1f6d9dce71.tar.gz zigfunge98-35c2f5e6261f2c1bfc9f0cc890421f1f6d9dce71.tar.bz2 zigfunge98-35c2f5e6261f2c1bfc9f0cc890421f1f6d9dce71.zip |
Removed useless imports
Diffstat (limited to '')
-rw-r--r-- | src/main.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.zig b/src/main.zig index 6962c37..ff4f09b 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,9 +1,6 @@ const std = @import("std"); -const field = @import("field.zig"); const interpreter = @import("interpreter.zig"); const io = @import("io.zig"); -const pointer = @import("pointer.zig"); -const stackStack = @import("stackStack.zig"); pub fn main() anyerror!void { var gpa = std.heap.GeneralPurposeAllocator(.{}){}; |