Categorygithub.com/saraginov/learn-go
module
0.0.0-20211127175118-db3ee8db598d
Repository: https://github.com/saraginov/learn-go.git
Documentation: pkg.go.dev

# README

learn-go

Intro to GO based on https://tour.golang.org/welcome/1

go run fileName.go

To run go files cd to target dir, in cli execute go run fileName.go, for example:

go run ./arrays/array.go

Compile and create binary executable

cli cmd https://golang.org/cmd/go/

go build [-o output] [-i] [build flags] [packages]

in target dir go install

To see details go help [command name]

Specs

https://golang.org/ref/spec#Type_assertions

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author