diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-12-18 23:05:29 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-12-18 23:05:29 +0100 |
commit | 3fbe24e6cde0e423f603c41ec06da736bf1a275b (patch) | |
tree | 303d81631f315c71ad116237e5485898bdc569f0 /example-fileio/Makefile | |
parent | 32bb63d22e243d4e1e0998f97b5528ea86e1ae78 (diff) | |
download | zig-playground-3fbe24e6cde0e423f603c41ec06da736bf1a275b.tar.gz zig-playground-3fbe24e6cde0e423f603c41ec06da736bf1a275b.zip |
fileio: minimal example
Diffstat (limited to 'example-fileio/Makefile')
-rw-r--r-- | example-fileio/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/example-fileio/Makefile b/example-fileio/Makefile new file mode 100644 index 0000000..d3b22bd --- /dev/null +++ b/example-fileio/Makefile @@ -0,0 +1,6 @@ +run: + zig run file.zig + od -tx1 -tc moose + +clean: + $(RM) moose |