multithreadingingo icon indicating copy to clipboard operation
multithreadingingo copied to clipboard

Unable to compile Boids code

Open divyansh5959 opened this issue 4 years ago • 1 comments

On executing: go run main.go It gives error : package command-line-arguments imports github.com/hajimehoshi/ebiten imports github.com/hajimehoshi/ebiten: import cycle not allowed

divyansh5959 avatar Aug 30 '20 13:08 divyansh5959

Hi there, The projects uses go lang's modules. To build the project and run the boids simulation try the following:

cd goprojects\multithreadingingo
go build ./...
go run ./boids

cutajarj avatar Aug 30 '20 16:08 cutajarj