- Learn Type:Driven Development
- Yawar Amin Kamon Ayeva
- 204字
- 2021-07-02 14:41:23
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, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Mount the downloaded WebStorm-10*.dmg disk image file as another disk in your system".
A block of code is set as follows:
let sumOfSquares(x: int, y: int) = { /* (1) */
let xSq = x * x;
let ySq = y * y;
xSq + ySq
};
The code is highlighted as follows:
- Types are bolded
- Values are slanted
- Language-reserved words (keywords) are underlined
Also note that numbered comments are added to certain points in the code that need further explanation, for example:
- This note explains the code marked with the comment /* (1) */
Any command-line input or output is written as follows:
$ mkdir css
$ cd css
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Select System info from the Administration panel".
- C語言程序設計實踐教程(第2版)
- TypeScript入門與實戰
- Mastering Objectoriented Python
- 用Flutter極速構建原生應用
- 零基礎輕松學SQL Server 2016
- Visual C#通用范例開發金典
- Python之光:Python編程入門與實戰
- Python入門很輕松(微課超值版)
- 零基礎學C語言程序設計
- Android Sensor Programming By Example
- SwiftUI極簡開發
- Clojure High Performance Programming(Second Edition)
- Hands-On Dependency Injection in Go
- R語言實戰(第2版)
- Using Yocto Project with BeagleBone Black