Peter David Faria
Peter David Faria
The guide didn't mention this file, but it contains code that appears to download the `glsdk` directory, which is needed for `framework/framework.lua` to run. I'm able to install the `luasocket`...
Repro steps ``` > echo $GO111MODULE on > pwd (subdir of GOPATH) > go get -u github.com/davecgh/go-spew/spew go: finding github.com/davecgh/go-spew/spew latest go get github.com/davecgh/go-spew/spew: no matching versions for query "latest"...
Added support for other projects to vendor `go-spew` with `go mod`. Fixes #93
The implementations of reduce were fixed. They used to iterate over the same element in the list, now it correctly iterates over every element in the list. concatMap was made...