- Go Systems Programming
- Mihalis Tsoukalos
- 185字
- 2021-07-02 18:07:52
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning. Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "This is because the main() function is where the program execution begins."
A block of code is set as follows:
package main import "fmt" import "os" func main() { arguments := os.Args for i := 0; i < len(arguments); i++ { fmt.Println(arguments[i]) } }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
package main import "fmt" import "os" func main() { arguments := os.Args for i := 0; i < len(arguments); i++ { fmt.Println(arguments[i]) } }
Any command-line input or output is written as follows:
$ go run hw.go Hello World!
New terms and important words are shown in bold.
Warnings or important notes appear like this.
Tips and tricks appear like this.
推薦閱讀
- Mastering QGIS
- C語言從入門到精通(第4版)
- The DevOps 2.5 Toolkit
- C語言程序設(shè)計(jì)上機(jī)指導(dǎo)與習(xí)題解答(第2版)
- 響應(yīng)式架構(gòu):消息模式Actor實(shí)現(xiàn)與Scala、Akka應(yīng)用集成
- 一步一步跟我學(xué)Scratch3.0案例
- 百萬在線:大型游戲服務(wù)端開發(fā)
- Python第三方庫(kù)開發(fā)應(yīng)用實(shí)戰(zhàn)
- Using Yocto Project with BeagleBone Black
- 金融商業(yè)數(shù)據(jù)分析:基于Python和SAS
- 用Python動(dòng)手學(xué)統(tǒng)計(jì)學(xué)
- Design Patterns and Best Practices in Java
- 開源網(wǎng)絡(luò)地圖可視化:基于Leaflet的在線地圖開發(fā)
- JavaScript程序設(shè)計(jì)實(shí)例教程(第2版)
- Learning Google Apps Script