- 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.
推薦閱讀
- NativeScript for Angular Mobile Development
- 營銷數(shù)據(jù)科學(xué):用R和Python進(jìn)行預(yù)測分析的建模技術(shù)
- Java面向?qū)ο蟪绦蜷_發(fā)及實戰(zhàn)
- Internet of Things with the Arduino Yún
- Eclipse Plug-in Development:Beginner's Guide(Second Edition)
- 軟件項目管理實用教程
- 從0到1:Python數(shù)據(jù)分析
- Hands-On Full Stack Development with Go
- 動手學(xué)數(shù)據(jù)結(jié)構(gòu)與算法
- Learning Continuous Integration with TeamCity
- Java語言程序設(shè)計教程
- 編寫高質(zhì)量代碼:改善Objective-C程序的61個建議
- 編程改變生活:用Python提升你的能力(進(jìn)階篇·微課視頻版)
- Building Slack Bots
- 青少年學(xué)Python(第2冊)