1234567891011121314151617181920 |
- # Zig build artifacts
- main
- zig-cache/
- .zig-cache/
- zig-out/
-
- # Compiled binary output
- bin/
- !bin/.gitkeep
-
- # Ignore any .o or .h files generated during build
- *.o
- *.h
-
- # Ignore OS and editor specific files
- **/.DS_Store
- *.swp
- *~
-
- your_program.strace
|