- Changed .gitignore: "five" → "/five" to only ignore root binary - cmd/five/main.go (702 LOC): Five CLI entry point (run, build, gen, debug, frb) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
248 B
Plaintext
34 lines
248 B
Plaintext
# Binaries
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
/five
|
|
|
|
# Test binary
|
|
*.test
|
|
|
|
# Output
|
|
*.out
|
|
|
|
# Build
|
|
_build/
|
|
_harbour_build/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Go
|
|
vendor/
|
|
|
|
# Reference projects (not part of Five source)
|
|
ref/
|