@tranzfat yes you can use external packages in go repl
@tranzfat yes you can use external packages in go repl
@mccolljr You can actually use community packages via Go modules. Try running a script that uses an external module ("github.com/..."
@tim15 You can use go modules. Running will automatically create a go.mod file
Hi I have just bumped into this. I tried running a code that requires an external package and it worked. As of 1.11 Go supports modules.
Currently no package manager on the UI unlike python or javascript but if you run the script with an import statment requiring an external package, go will automatically download the package and generate go.mod at the same time.
Here is the example script I have tried to run that uses goquery https://repl.it/@jeremejazz/Golang-1