diff --git a/Windows.md b/Windows.md index ab554f6..7f9e2d7 100644 --- a/Windows.md +++ b/Windows.md @@ -28,6 +28,8 @@ scoop install git To check installation finished correctly, let's execute an example. ``` -cd %GOPATH%\src\github.com\hajimehoshi\ebiten\examples -go run -tags=example rotate\main.go +mkdir test +go mod init example.com/m +go get github.com/hajimehoshi/ebiten +go run -tags=example github.com/hajimehoshi/ebiten/rotate/main.go ```