diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-12-18 23:05:29 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-02-07 21:54:55 +0100 |
commit | 4231d0773b219b32ae8fab0e4ee58ca9ffd6037b (patch) | |
tree | 15c61b254a498bc573c241561d7f8091b2d9321a /example-fileio/Makefile | |
parent | 801eec8df98c31f3fc29baeb87dc4deadf813486 (diff) | |
download | zig-playground-4231d0773b219b32ae8fab0e4ee58ca9ffd6037b.tar.gz zig-playground-4231d0773b219b32ae8fab0e4ee58ca9ffd6037b.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 |