123456789101112131415161718
  1. # Zig build artifacts
  2. .zig-cache/
  3. zig-cache/
  4. zig-out/
  5. # Compiled binary output
  6. main
  7. bin/
  8. !bin/.gitkeep
  9. # Ignore any .o or .h files generated during build
  10. *.o
  11. *.h
  12. # Ignore OS and editor specific files
  13. .DS_Store
  14. *.swp
  15. *~