A Go project for Advent of Code 2025 solutions.
cmd/- Main application entry pointspkg/- Public library codeinternal/- Private application code
- Go 1.21 or later
-
Clone or navigate to this repository
-
Build the project:
go build -o bin/aoc2025 ./cmd
-
Run the project:
./bin/aoc2025
Or run directly:
go run ./cmd
- Run tests:
go test ./... - Format code:
go fmt ./... - Lint code:
go vet ./... - Update dependencies:
go mod tidy
This project is licensed under the MIT License.