February 2017
Intermediate to advanced
402 pages
8h 7m
English
This wouldn't be a good book without a Hello World example. Our Hello World example can't be simpler, open your favorite text editor and create a file called main.go within our $GOPATH/src/[your_name]/hello_world with the following content:
package main
func main(){
println("Hello World!")
}
Save the file. To run our program, open the Terminal window of your operating system:
cmd without quotes on the new window and hit Enter.terminal without quotes. The terminal app must be highlighted so hit Enter.Once we are in our terminal, navigate to the folder where we have ...
Read now
Unlock full access