This is a repo to test Golang Modules
Excecute teh following command:
go get -u github.com/CarlosJiZe/hello_modulesimport (
"fmt"
"github.com/CarlosJiZe/hello_modules"
)
func main() {
message := hello_modules.Hello1("Carlos")
fmt.Printf(message)
fmt.Printf(hello_modules.RandomHello(), "Juan")
}