# Go artifacts (per-language, under go/)
go/bin/
go/dist/
go/vendor/
go/*.test
go/*.exe
go/go.work.sum

# Test and coverage artifacts
*.out
*.test
coverage.txt
coverage.html
*.prof

# Editors and OS
.idea/
.vscode/
.DS_Store
*.swp
*.swo
*~

# veccheck binary (built locally, never committed)
go/veccheck

# Rust artifacts (per-language, under rust/)
/rust/target/
rust/**/*.rs.bk

# Python artifacts (per-language, under python/)
python/.venv/
python/**/__pycache__/
python/**/*.py[cod]
python/.pytest_cache/
python/.mypy_cache/
python/.ruff_cache/
python/dist/
python/build/
python/*.egg-info/

# C++ artifacts (per-language, under cpp/)
cpp/build/
cpp/Testing/

