Running
We can put our project in any directory now.
For the next scenario, we will have to use the go mod in our project so that all external packages can work correctly, in this way we will be able to manage them correctly and their version. More information can be found here: Wiki Go Modules
$ go mod init github.com/user/project1
Create the file on the side (called hello.go) and run it with the following command:
$ go run hello.go
hello, Gophers