gf2 2.0.0

Working in bit-space a.k.a. GF(2)
Documentation
# Set up the folders/files that should never go into the git repository.

# The Mac Finder produces a metadata file in directories that is noise
.DS_Store

# My specific Visual Code setup is only useful to me
.vscode/

# Scratchings in a private directory that need not go into git
private/

# Temporary files we use to capture program outputs and compiled output files
scratch*
OUT
ERR
*.out
*.err
*.log
*.o
*.obj
*.exe
build

# Any LLM prompts
prompt.md

# Exclusions for the MSVC build system
out/
.vs/

# Any documentation site build folders
site/
html/
.quarto/
_site/
.luarc.json

# Exclusions for Python/Jupyter
venv/
.python-version
__pycache__/
.ipynb_checkpoints/

# Exclusions for Node.js
node_modules/

# Exclusions for Lua/LuaRocks
/luarocks
/lua
/lua_modules
/.luarocks
/.luarc.json
*.rock

# Exclusions for Rust/Cargo
/target
/Cargo.lock
**/*.rs.bkp*