Hi! For reference, you can store this cheatsheet after you take the lectures in this section.
You can also print this cheatsheet and then follow the video lectures in this section along with it.
Enjoy!
-
Enter into a directory:
cd directoryPath
-
WINDOWS:
- List files in a directory:
dir
- List files in a directory:
-
OS X & LINUXes:
- List files in a directory:
ls
- List files in a directory:
-
Build a Go program:
- While inside a program directory, type:
go build
- While inside a program directory, type:
-
Run a Go program:
- While inside a program directory, type:
go run main.go
- While inside a program directory, type:
See the next page...
-
$GOPATH is an environment variable which points to a directory where the downloaded and your own Go files are stored.
-
On Windows, it's in:
%USERPROFILE%\go
-
On OS X & Linux, it's in:
~/go
-
NOTE: Never set your GOPATH manually. It's by default under your users directory.
-
-
GOPATH has 3 directories:
-
src: Contains the source files for your own or other downloaded packages. You can build and run programs while in a program directory under this directory.
-
pkg: Contains compiled package files. Go uses this to make the builds (compilation & linking) faster.
-
bin: Contains compiled and executable Go programs. When you call go install on a program directory, Go will put the executable under this folder.
- You might want to add this to your
PATH
environment variable if it's not there already.
- You might want to add this to your
-
-
$GOPATH/src/github.com/yourUsername/programDirectory
-
Example:
-
My GitHub username is: inancgumus
-
So, I put all my programs under:
~/go/src/github.com/inancgumus/
-
And, let's say that I've a program named hello, then I put it under this directory:
~/go/src/github.com/inancgumus/hello
-
See the next page...
-
Create directories:
-
OS X & Linux (or git bash):
- Create a new directory:
mkdir -p ~/go/src/yourname/hello
- Go to that directory:
cd ~/go/src/yourname/hello
- Create a new directory:
-
Windows:
- Create a new directory:
mkdir c:\Go\src\yourname\hello
- Go to that directory:
cd c:\Go\src\yourname\hello
- Create a new directory:
-
-
Create a new
code main.go
file under Visual Studio Code. -
And add the following code to it and save it.
-
Then, return back to the command-line.
- Run it like this:
go run main.go
- Run it like this:
package main
import "fmt"
func main() {
fmt.Println("Hi! I want to be a Gopher!")
}
That's all! Enjoy!
- BTW, There's a new Go Modules support which allows you to run your programs in any directory that you want. After the section ends, you'll also find an information about it.
For more tutorials: https://blog.learngoprogramming.com
Copyright © 2018 Inanc Gumus
Learn Go Programming Course