Its a dummy project only for my personal studies.
GOROOT:
GOPATH:
Explore output methods
Explore variables: structs, contants, primitives etc
ps.: use commands bellow in example directory (8-oo)
up redis
sudo docker run -d -p 6379:6379 -i -t redis:3.2.5-alpine
need install external modules (go modules)
go get -u github.com/go-redis/redis/v7
to test all test
go test -v *_test.go
created with
go mod init go-study.com/m
To install a public module
go get github.com/masatana/go-textdistance
To add dependencies in vendor package
go mod vendor
and run
go run main.go