- Hands-On Full Stack Development with Go
- Mina Andrawos
- 180字
- 2021-07-02 12:33:27
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, path names, dummy URLs, user input, and Twitter handles. Here is an example: "We'll also cover some concepts that are specific to Go, such as slice, panic, and defer."
A block of code is set as follows:
package mypackage
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
type Student struct{
Person
studentId int
}
func (s Student) GetStudentID()int{
return s.studentId
}
Any command-line input or output is written as follows:
go install
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "This is called type inference, since you infer the variable type from the provided value."
- 摩登創客:與智能手機和平板電腦共舞
- Learning Docker
- 劍指Offer(專項突破版):數據結構與算法名企面試題精講
- Java EE框架整合開發入門到實戰:Spring+Spring MVC+MyBatis(微課版)
- Vue.js快跑:構建觸手可及的高性能Web應用
- MongoDB for Java Developers
- Spring Cloud、Nginx高并發核心編程
- Learn Scala Programming
- 前端架構:從入門到微前端
- The HTML and CSS Workshop
- C++從入門到精通(第5版)
- STM8實戰
- Java 9 with JShell
- 優化驅動的設計方法
- 計算思維與Python編程