gopl-zh.github.com/ch1/ch1-02.html

332 lines
40 KiB
HTML
Raw Normal View History

<!DOCTYPE HTML>
<html lang="zh" class="sidebar-visible no-js light">
<head>
<!-- Book generated using mdBook -->
<meta charset="UTF-8">
<title>命令行参数 - Go语言圣经</title>
<!-- Custom HTML head -->
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="description" content="&lt;The Go Programming Language&gt;中文版">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff" />
<link rel="icon" href="../favicon.svg">
<link rel="shortcut icon" href="../favicon.png">
<link rel="stylesheet" href="../css/variables.css">
<link rel="stylesheet" href="../css/general.css">
<link rel="stylesheet" href="../css/chrome.css">
<link rel="stylesheet" href="../css/print.css" media="print">
<!-- Fonts -->
<link rel="stylesheet" href="../FontAwesome/css/font-awesome.css">
<link rel="stylesheet" href="../fonts/fonts.css">
<!-- Highlight.js Stylesheets -->
<link rel="stylesheet" href="../highlight.css">
<link rel="stylesheet" href="../tomorrow-night.css">
<link rel="stylesheet" href="../ayu-highlight.css">
<!-- Custom theme stylesheets -->
<link rel="stylesheet" href="../style.css">
</head>
<body>
<!-- Provide site root to javascript -->
<script type="text/javascript">
var path_to_root = "../";
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
</script>
<!-- Work around some values being stored in localStorage wrapped in quotes -->
<script type="text/javascript">
try {
var theme = localStorage.getItem('mdbook-theme');
var sidebar = localStorage.getItem('mdbook-sidebar');
if (theme.startsWith('"') && theme.endsWith('"')) {
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
}
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
}
} catch (e) { }
</script>
<!-- Set the theme before any content is loaded, prevents flash -->
<script type="text/javascript">
var theme;
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
if (theme === null || theme === undefined) { theme = default_theme; }
var html = document.querySelector('html');
html.classList.remove('no-js')
html.classList.remove('light')
html.classList.add(theme);
html.classList.add('js');
</script>
<!-- Hide / unhide sidebar before it is displayed -->
<script type="text/javascript">
var html = document.querySelector('html');
var sidebar = 'hidden';
if (document.body.clientWidth >= 1080) {
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
sidebar = sidebar || 'visible';
}
html.classList.remove('sidebar-visible');
html.classList.add("sidebar-" + sidebar);
</script>
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
<div class="sidebar-scrollbox">
<ol class="chapter"><li class="chapter-item expanded affix "><a href="../index.html">Go语言圣经</a></li><li class="chapter-item expanded affix "><a href="../preface-zh.html">译者序</a></li><li class="chapter-item expanded affix "><a href="../preface.html">前言</a></li><li class="chapter-item expanded "><a href="../ch1/ch1.html"><strong aria-hidden="true">1.</strong> 入门</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="../ch1/ch1-01.html"><strong aria-hidden="true">1.1.</strong> Hello, World</a></li><li class="chapter-item expanded "><a href="../ch1/ch1-02.html" class="active"><strong aria-hidden="true">1.2.</strong> 命令行参数</a></li><li class="chapter-item expanded "><a href="../ch1/ch1-03.html"><strong aria-hidden="true">1.3.</strong> 查找重复的行</a></li><li class="chapter-item expanded "><a href="../ch1/ch1-04.html"><strong aria-hidden="true">1.4.</strong> GIF动画</a></li><li class="chapter-item expanded "><a href="../ch1/ch1-05.html"><strong aria-hidden="true">1.5.</strong> 获取URL</a></li><li class="chapter-item expanded "><a href="../ch1/ch1-06.html"><strong aria-hidden="true">1.6.</strong> 并发获取多个URL</a></li><li class="chapter-item expanded "><a href="../ch1/ch1-07.html"><strong aria-hidden="true">1.7.</strong> Web服务</a></li><li class="chapter-item expanded "><a href="../ch1/ch1-08.html"><strong aria-hidden="true">1.8.</strong> 本章要点</a></li></ol></li><li class="chapter-item expanded "><a href="../ch2/ch2.html"><strong aria-hidden="true">2.</strong> 程序结构</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="../ch2/ch2-01.html"><strong aria-hidden="true">2.1.</strong> 命名</a></li><li class="chapter-item expanded "><a href="../ch2/ch2-02.html"><strong aria-hidden="true">2.2.</strong> 声明</a></li><li class="chapter-item expanded "><a href="../ch2/ch2-03.html"><strong aria-hidden="true">2.3.</strong> 变量</a></li><li class="chapter-item expanded "><a href="../ch2/ch2-04.html"><strong aria-hidden="true">2.4.</strong> 赋值</a></li><li class="chapter-item expanded "><a href="../ch2/ch2-05.html"><strong aria-hidden="true">2.5.</strong> 类型</a></li><li class="chapter-item expanded "><a href="../ch2/ch2-06.html"><strong aria-hidden="true">2.6.</strong> 包和文件</a></li><li class="chapter-item expanded "><a href="../ch2/ch2-07.html"><strong aria-hidden="true">2.7.</strong> 作用域</a></li></ol></li><li class="chapter-item expanded "><a href="../ch3/ch3.html"><strong aria-hidden="true">3.</strong> 基础数据类型</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="../ch3/ch3-01.html"><strong aria-hidden="true">3.1.</strong> 整型</a></li><li class="chapter-item expanded "><a href="../ch3/ch3-02.html"><strong aria-hidden="true">3.2.</strong> 浮点数</a></li><li class="chapter-item expanded "><a href="../ch3/ch3-03.html"><strong aria-hidden="true">3.3.</strong> 复数</a></li><li class="chapter-item expanded "><a href="../ch3/ch3-04.html"><strong aria-hidden="true">3.4.</strong> 布尔型</a></li><li class="chapter-item expanded "><a href="../ch3/ch3-05.html"><strong aria-hidden="true">3.5.</strong> 字符串</a></li><li class="chapter-item expanded "><a href="../ch3/ch3-06.html"><strong aria-hidden="true">3.6.</strong> 常量</a></li></ol></li><li class="chapter-item expanded "><a href="../ch4/ch4.html"><strong aria-hidden="true">4.</strong> 复合数据类型</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="../ch4/ch4-01.html"><strong aria-hidden="true">4.1.</strong> 数组</a></li><li class="chapter-item expanded "><a href="../ch4/ch4-02.html"><strong aria-hidden="true">4.2.</strong> Slice</a></li><li class="chapter-item expanded "><a href="../ch4/ch4-03.html"><strong aria-hidden="true">4.3.</strong> Map</a></li><li class="chapter-item expanded "><a href="../ch4/ch4-04.html"><strong aria-hidden="true">4.4.</strong> 结构体</a></li><li class="chapter-item expanded "><a href="../ch4/ch4-05.html"><strong aria-hidden="true">4.5.<
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
</nav>
<div id="page-wrapper" class="page-wrapper">
<div class="page">
<div id="menu-bar-hover-placeholder"></div>
<div id="menu-bar" class="menu-bar sticky bordered">
<div class="left-buttons">
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
<i class="fa fa-bars"></i>
</button>
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
<i class="fa fa-paint-brush"></i>
</button>
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
<li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li>
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
</ul>
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
<i class="fa fa-search"></i>
</button>
</div>
<h1 class="menu-title">Go语言圣经</h1>
<div class="right-buttons">
<a href="../print.html" title="Print this book" aria-label="Print this book">
<i id="print-button" class="fa fa-print"></i>
</a>
<a href="https://github.com/gopl-zh/gopl-zh.github.com" title="Git repository" aria-label="Git repository">
<i id="git-repository-button" class="fa fa-github"></i>
</a>
<a href="https://github.com/gopl-zh/gopl-zh.github.com/edit/master/./ch1/ch1-02.md" title="Suggest an edit" aria-label="Suggest an edit">
<i id="git-edit-button" class="fa fa-edit"></i>
</a>
</div>
</div>
<div id="search-wrapper" class="hidden">
<form id="searchbar-outer" class="searchbar-outer">
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
</form>
<div id="searchresults-outer" class="searchresults-outer hidden">
<div id="searchresults-header" class="searchresults-header"></div>
<ul id="searchresults">
</ul>
</div>
</div>
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
<script type="text/javascript">
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
});
</script>
<div id="content" class="content">
<!-- Page table of contents -->
<div class="sidetoc"><nav class="pagetoc"></nav></div>
<main>
<!-- 头部 -->
<ul dir="auto">
<li><em>Go语言圣经读书笔记(挖坑中...): <a href="https://github.com/chai2010/gopl-notes-zh">https://github.com/chai2010/gopl-notes-zh</a></em></li>
<li><em>凹语言(Go实现, 面向WASM设计): <a href="https://github.com/wa-lang/wa">https://github.com/wa-lang/wa</a></em></li>
</ul>
<hr>
<h2 id="12-命令行参数"><a class="header" href="#12-命令行参数">1.2. 命令行参数</a></h2>
<p>大多数的程序都是处理输入,产生输出;这也正是“计算”的定义。但是,程序如何获取要处理的输入数据呢?一些程序生成自己的数据,但通常情况下,输入来自于程序外部:文件、网络连接、其它程序的输出、敲键盘的用户、命令行参数或其它类似输入源。下面几个例子会讨论其中几个输入源,首先是命令行参数。</p>
<p><code>os</code> 包以跨平台的方式,提供了一些与操作系统交互的函数和变量。程序的命令行参数可从 <code>os</code> 包的 <code>Args</code> 变量获取;<code>os</code> 包外部使用 <code>os.Args</code> 访问该变量。</p>
<p><code>os.Args</code> 变量是一个字符串string<em>切片</em>slice译注slice 和 Python 语言中的切片类似,是一个简版的动态数组),切片是 Go 语言的基础概念,稍后详细介绍。现在先把切片 <code>s</code> 当作数组元素序列,序列的长度动态变化,用 <code>s[i]</code> 访问单个元素,用 <code>s[m:n]</code> 获取子序列(译注:和 Python 里的语法差不多)。序列的元素数目为 <code>len(s)</code>。和大多数编程语言类似区间索引时Go 语言里也采用左闭右开形式,即,区间包括第一个索引元素,不包括最后一个,因为这样可以简化逻辑。(译注:比如 <code>a=[1,2,3,4,5]</code>, <code>a[0:3]=[1,2,3]</code>,不包含最后一个元素)。比如 <code>s[m:n]</code> 这个切片,<code>0≤m≤n≤len(s)</code>,包含 <code>n-m</code> 个元素。</p>
<p><code>os.Args</code> 的第一个元素:<code>os.Args[0]</code>,是命令本身的名字;其它的元素则是程序启动时传给它的参数。<code>s[m:n]</code> 形式的切片表达式,产生从第 <code>m</code> 个元素到第 <code>n-1</code> 个元素的切片,下个例子用到的元素包含在 <code>os.Args[1:len(os.Args)]</code> 切片中。如果省略切片表达式的 <code>m</code><code>n</code>,会默认传入 <code>0</code><code>len(s)</code>,因此前面的切片可以简写成 <code>os.Args[1:]</code></p>
<p>下面是 Unix 里 <code>echo</code> 命令的一份实现,<code>echo</code> 把它的命令行参数打印成一行。程序导入了两个包,用括号把它们括起来写成列表形式,而没有分开写成独立的 <code>import</code> 声明。两种形式都合法,列表形式习惯上用得多。包导入顺序并不重要;<code>gofmt</code> 工具格式化时按照字母顺序对包名排序。(示例有多个版本时,我们会对示例编号,这样可以明确当前正在讨论的是哪个。)</p>
<p><u><i>gopl.io/ch1/echo1</i></u></p>
<pre><code class="language-go">// Echo1 prints its command-line arguments.
package main
import (
&quot;fmt&quot;
&quot;os&quot;
)
func main() {
var s, sep string
for i := 1; i &lt; len(os.Args); i++ {
s += sep + os.Args[i]
sep = &quot; &quot;
}
fmt.Println(s)
}
</code></pre>
<p>注释语句以 <code>//</code> 开头。对于程序员来说,<code>//</code> 之后到行末之间所有的内容都是注释,被编译器忽略。按照惯例,我们在每个包的包声明前添加注释;对于 <code>main package</code>,注释包含一句或几句话,从整体角度对程序做个描述。</p>
<p><code>var</code> 声明定义了两个 <code>string</code> 类型的变量 <code>s</code><code>sep</code>。变量会在声明时直接初始化。如果变量没有显式初始化,则被隐式地赋予其类型的 <em>零值</em>zero value数值类型是 <code>0</code>,字符串类型是空字符串 <code>&quot;&quot;</code>。这个例子里,声明把 <code>s</code><code>sep</code> 隐式地初始化成空字符串。第 2 章再来详细地讲解变量和声明。</p>
<p>对数值类型Go 语言提供了常规的数值和逻辑运算符。而对 <code>string</code> 类型,<code>+</code> 运算符连接字符串(译注:和 C++ 或者 JavaScript 是一样的)。所以表达式:<code>sep + os.Args[i]</code> 表示连接字符串 <code>sep</code><code>os.Args[i]</code>。程序中使用的语句:<code>s+=sep+os.Args[i]</code> 是一条 <em>赋值语句</em>,将 <code>s</code> 的旧值跟 <code>sep</code><code>os.Args[i]</code> 连接后赋值回 <code>s</code>,等价于:<code>s=s+sep+os.Args[i]</code></p>
<p>运算符 <code>+=</code> 是赋值运算符assignment operator每种数值运算符或逻辑运算符<code>+</code><code>*</code>,都有对应的赋值运算符。</p>
<p><code>echo</code> 程序可以每循环一次输出一个参数,这个版本却是不断地把新文本追加到末尾来构造字符串。字符串 <code>s</code> 开始为空,即值为 <code>&quot;&quot;</code>每次循环会添加一些文本第一次迭代之后还会再插入一个空格因此循环结束时每个参数中间都有一个空格。这是一种二次加工quadratic process当参数数量庞大时开销很大但是对于 <code>echo</code>,这种情形不大可能出现。本章会介绍 <code>echo</code> 的若干改进版,下一章解决低效问题。</p>
<p>循环索引变量 <code>i</code><code>for</code> 循环的第一部分中定义。符号 <code>:=</code><em>短变量声明</em>short variable declaration的一部分这是定义一个或多个变量并根据它们的初始值为这些变量赋予适当类型的语句。下一章有这方面更多说明。</p>
<p>自增语句 <code>i++</code><code>i</code><code>1</code>;这和 <code>i+=1</code> 以及 <code>i=i+1</code> 都是等价的。对应的还有 <code>i--</code><code>i</code><code>1</code>。它们是语句,而不像 C 系的其它语言那样是表达式。所以 <code>j=i++</code> 非法,而且 <code>++</code><code>--</code> 都只能放在变量名后面,因此 <code>--i</code> 也非法。</p>
<p>Go 语言只有 <code>for</code> 循环这一种循环语句。<code>for</code> 循环有多种形式,其中一种如下所示:</p>
<pre><code class="language-go">for initialization; condition; post {
// zero or more statements
}
</code></pre>
<p><code>for</code> 循环三个部分不需括号包围。大括号强制要求,左大括号必须和 <em><code>post</code></em> 语句在同一行。</p>
<p><em><code>initialization</code></em> 语句是可选的,在循环开始前执行。<em><code>initalization</code></em> 如果存在,必须是一条 <em>简单语句</em>simple statement短变量声明、自增语句、赋值语句或函数调用。<code>condition</code> 是一个布尔表达式boolean expression其值在每次循环迭代开始时计算。如果为 <code>true</code> 则执行循环体语句。<code>post</code> 语句在循环体执行结束后执行,之后再次对 <code>condition</code> 求值。<code>condition</code> 值为 <code>false</code> 时,循环结束。</p>
<p>for 循环的这三个部分每个都可以省略,如果省略 <code>initialization</code><code>post</code>,分号也可以省略:</p>
<pre><code class="language-go">// a traditional &quot;while&quot; loop
for condition {
// ...
}
</code></pre>
<p>如果连 <code>condition</code> 也省略了,像下面这样:</p>
<pre><code class="language-go">// a traditional infinite loop
for {
// ...
}
</code></pre>
<p>这就变成一个无限循环,尽管如此,还可以用其他方式终止循环,如一条 <code>break</code><code>return</code> 语句。</p>
<p><code>for</code> 循环的另一种形式在某种数据类型的区间range上遍历如字符串或切片。<code>echo</code> 的第二版本展示了这种形式:</p>
<p><u><i>gopl.io/ch1/echo2</i></u></p>
<pre><code class="language-go">// Echo2 prints its command-line arguments.
package main
import (
&quot;fmt&quot;
&quot;os&quot;
)
func main() {
s, sep := &quot;&quot;, &quot;&quot;
for _, arg := range os.Args[1:] {
s += sep + arg
sep = &quot; &quot;
}
fmt.Println(s)
}
</code></pre>
<p>每次循环迭代,<code>range</code> 产生一对值;索引以及在该索引处的元素值。这个例子不需要索引,但 <code>range</code> 的语法要求,要处理元素,必须处理索引。一种思路是把索引赋值给一个临时变量(如 <code>temp</code>)然后忽略它的值,但 Go 语言不允许使用无用的局部变量local variables因为这会导致编译错误。</p>
<p>Go 语言中这种情况的解决方法是用 <em>空标识符</em>blank identifier<code>_</code>(也就是下划线)。空标识符可用于在任何语法需要变量名但程序逻辑不需要的时候(如:在循环里)丢弃不需要的循环索引,并保留元素值。大多数的 Go 程序员都会像上面这样使用 <code>range</code><code>_</code><code>echo</code> 程序,因为隐式地而非显式地索引 <code>os.Args</code>,容易写对。</p>
<p><code>echo</code> 的这个版本使用一条短变量声明来声明并初始化 <code>s</code><code>seps</code>,也可以将这两个变量分开声明,声明一个变量有好几种方式,下面这些都等价:</p>
<pre><code class="language-go">s := &quot;&quot;
var s string
var s = &quot;&quot;
var s string = &quot;&quot;
</code></pre>
<p>用哪种不用哪种,为什么呢?第一种形式,是一条短变量声明,最简洁,但只能用在函数内部,而不能用于包变量。第二种形式依赖于字符串的默认初始化零值机制,被初始化为 <code>&quot;&quot;</code>。第三种形式用得很少,除非同时声明多个变量。第四种形式显式地标明变量的类型,当变量类型与初值类型相同时,类型冗余,但如果两者类型不同,变量类型就必须了。实践中一般使用前两种形式中的某个,初始值重要的话就显式地指定变量的值,否则指定类型使用隐式初始化。</p>
<p>如前文所述,每次循环迭代字符串 <code>s</code> 的内容都会更新。<code>+=</code> 连接原字符串、空格和下个参数,产生新字符串,并把它赋值给 <code>s</code><code>s</code> 原来的内容已经不再使用,将在适当时机对它进行垃圾回收。</p>
<p>如果连接涉及的数据量很大,这种方式代价高昂。一种简单且高效的解决方案是使用 <code>strings</code> 包的 <code>Join</code> 函数:</p>
<p><u><i>gopl.io/ch1/echo3</i></u></p>
<pre><code class="language-go">func main() {
fmt.Println(strings.Join(os.Args[1:], &quot; &quot;))
}
</code></pre>
<p>最后,如果不关心输出格式,只想看看输出值,或许只是为了调试,可以用 <code>Println</code> 为我们格式化输出。</p>
<pre><code class="language-go">fmt.Println(os.Args[1:])
</code></pre>
<p>这条语句的输出结果跟 <code>strings.Join</code> 得到的结果很像,只是被放到了一对方括号里。切片都会被打印成这种格式。</p>
<hr />
<p><strong>练习 1.1</strong> 修改 <code>echo</code> 程序,使其能够打印 <code>os.Args[0]</code>,即被执行命令本身的名字。</p>
<p><strong>练习 1.2</strong> 修改 <code>echo</code> 程序,使其打印每个参数的索引和值,每个一行。</p>
<p><strong>练习 1.3</strong> 做实验测量潜在低效的版本和使用了 <code>strings.Join</code> 的版本的运行时间差异。(<a href="./ch1-06.html">1.6 节</a>讲解了部分 <code>time</code> 包,<a href="../ch11/ch11-04.html">11.4 节</a>展示了如何写标准测试程序,以得到系统性的性能评测。)</p>
<!-- 公众号 -->
<hr>
<table>
<tr>
<td>
<img width="222px" src="https://chai2010.cn/advanced-go-programming-book/css.png">
</td>
<td>
<img width="222px" src="https://chai2010.cn/advanced-go-programming-book/cch.png">
</td>
</tr>
</table>
<div id="giscus-container"></div>
<footer class="page-footer">
<span>© 2015-2016 | <a href="https://github.com/gopl-zh"> Go语言圣经中文版</a>, 仅学习交流使用</span>
</footer>
</main>
<nav class="nav-wrapper" aria-label="Page navigation">
<!-- Mobile navigation buttons -->
<a rel="prev" href="../ch1/ch1-01.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<i class="fa fa-angle-left"></i>
</a>
<a rel="next" href="../ch1/ch1-03.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i>
</a>
<div style="clear: both"></div>
</nav>
</div>
</div>
<nav class="nav-wide-wrapper" aria-label="Page navigation">
<a rel="prev" href="../ch1/ch1-01.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<i class="fa fa-angle-left"></i>
</a>
<a rel="next" href="../ch1/ch1-03.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i>
</a>
</nav>
</div>
<script type="text/javascript">
window.playground_copyable = true;
</script>
<script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../mark.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../searcher.js" type="text/javascript" charset="utf-8"></script>
<script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../highlight.js" type="text/javascript" charset="utf-8"></script>
<script src="../book.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
var pagePath = "ch1/ch1-02.md"
</script>
<!-- Custom JS scripts -->
<script type="text/javascript" src="../js/custom.js"></script>
<script type="text/javascript" src="../js/bigPicture.js"></script>
</body>
</html>