We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is just random notes to myself:
go.mod
vgo run
module "github.com/hajimehoshi/ebiten/v2/examples/blocks"
=> (v)go run with package name would be available golang/go#22726
(v)go run
vgo build
The text was updated successfully, but these errors were encountered:
As Go 1.10.3 already has minimal support for semantic versioning import paths, I think I can release 2.0 sooner than I expected (e.g. next to 1.8)?
Sorry, something went wrong.
go.mod already exists and let's keep updating it.
No branches or pull requests
This is just random notes to myself:
go.mod
is needed not only at ebiten package but also all the example main packages.vgo run
with specifying Go files doesn't recognize the main packages version-ed path. In other words, we can't have the belowgo.mod
forvgo run
?=>
(v)go run
with package name would be available golang/go#22726vgo build
accepts both modules paths (version-ed and not version-ed) for main packagesThe text was updated successfully, but these errors were encountered: