This is a golang step by step description. I update this as I learn go lang, so there may be mistakes. If you see some, please update them.
I use Todd McLeod's Udemy courses to learn go lang. Thank you very much for your awesome support.
sample program and README file with descriptions.
go run main.go
If there is a different method to run the code, it will be described in README in the folder.
- You can not keep unused variables. If you define a variable, you must use it in the program. Otherwise go compiler returns error.
- Using IDE will help you to reduce development time.
I found this medium series is very useful to learn basics about go with examples.