- Hands-On System Programming with Go
- Alex Guerrieri
- 42字
- 2021-06-24 13:42:22
Understanding flow control
In order to control the flow of an application, Go offers different tools – some statements like if/else, switch, and for are used in sequential scenarios, whereas others like go and select are used in concurrent ones.