The Go programming language compiler - that goes easy on you
This is a modified version of the Go compiler that treats unused variables as warnings instead of errors. It allows code with unused variables to compile and run successfully, making it more forgiving during development and prototyping.
Go-Easy modifies the standard Go compiler in several key ways:
Feature | Original Go | Go-Easy |
---|---|---|
Unused variables | Errors that prevent compilation | Warnings that allow compilation to continue |
Version string | Standard Go version (e.g., "go1.25") | Appended with "-easy" (e.g., "go1.25-easy") |
Compilation process | Stops on unused variable errors | Continues despite unused variables |
Development workflow | Requires fixing all unused variables | Allows focusing on functionality first |
These changes make Go-Easy particularly useful for:
- Rapid prototyping and experimentation
- Learning Go without getting stuck on variable usage
- Incremental development where variables may temporarily be unused
- Legacy code maintenance where removing unused variables might be risky
- Unused variables are reported as warnings instead of errors
- Code with unused variables still compiles and runs successfully
- The compiler version has "-easy" suffix to clearly identify it as a custom build
This repository includes several GitHub Actions workflows that work together to keep Go-Easy updated with the latest Go version:
The auto-merge-golang.yml
workflow:
- Runs daily to check for updates to the official Go repository
- Creates a PR with the latest Go code + Go-Easy modifications
- Automatically merges the PR to keep the master branch up-to-date
After auto-merge completes, three separate build workflows run:
build-and-release-macos.yml
- Builds Go-Easy for macOS (arm64, amd64)build-and-release-windows.yml
- Builds Go-Easy for Windows (386, amd64)build-and-release-linux.yml
- Builds Go-Easy for Linux (386, amd64, arm, arm64)
These workflows:
- Automatically run after the auto-merge workflow succeeds
- Build Go-Easy for each platform and architecture
- Create GitHub releases with the binary packages
- Can be manually triggered with custom options
You can manually trigger any workflow from the GitHub Actions tab:
- Navigate to the Actions tab in your repository
- Select the desired workflow
- Click "Run workflow"
- Configure options:
- Force build/update: Proceeds even if no changes are detected
- Custom version suffix: Set a custom suffix (default is "-easy")
- Skip release: Build but don't create a GitHub release
For the GitHub Actions workflows to work correctly, you need to have the modified Go source files in the correct structure. The repository should contain:
├── .github
│ └── workflows
│ ├── auto-merge-golang.yml
│ ├── build-and-release-macos.yml
│ ├── build-and-release-windows.yml
│ └── build-and-release-linux.yml
├── README.md
└── src
└── cmd
├── compile
│ └── internal
│ ├── base
│ │ └── print.go
│ └── types2
│ ├── api.go
│ └── errors.go
└── dist
└── build.go
src/cmd/compile/internal/base/print.go
- Modified to not count unused variable errorssrc/cmd/compile/internal/types2/errors.go
- Modified to show "warning:" prefix for unused variable errorssrc/cmd/compile/internal/types2/api.go
- Modified to only return errors for non-unused-variable issuessrc/cmd/dist/build.go
- Modified to append "-easy" to version string
You can either:
- Download pre-built binaries from the Releases page
- Clone this repository and build it yourself
If you want to build Go-Easy manually:
- Clone the official Go repository
- Copy the modified files from this repository to the Go repository
- Run
./src/make.bash
(or.\src\make.bat
on Windows)
The automation system follows this process:
- The auto-merge workflow checks daily for updates to the Go repository
- When updates are found, it clones the latest Go code and applies our modifications
- A PR is created and automatically merged to keep the master branch up-to-date
- The platform-specific build workflows are triggered after the merge
- Each build workflow compiles Go-Easy for its target platform(s)
- A GitHub release is created with all the built binaries
This ensures that Go-Easy always stays up-to-date with the latest Go version while maintaining our modifications.
package main
import "fmt"
func main() {
var a = "hello"
fmt.Println(a)
var unused = true
// This variable is unused but will compile with just a warning
}
With Go-Easy, this will compile and run with a warning:
test.go:9:5: warning: declared and not used: unused
hello
Go-Easy is based on Go and is subject to the same license as the original Go source code.