Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

[インデックス 17880] ファイルの概要

このコミットは、Go言語の公式仕様書である doc/go_spec.html の更新に関するものです。具体的には、Go言語における「ブランク識別子(blank identifier)」の振る舞いに関する記述をより明確にし、既存の言語仕様を正確に反映させることを目的としています。言語自体に変更を加えるものではなく、あくまでドキュメントの改善です。

コミット

commit f57bf7a5565ea756252645d95cbb799343663f1b
Author: Robert Griesemer <gri@golang.org>
Date:   Tue Nov 12 21:06:54 2013 -0500

    spec: clarify rules for blank identifiers
    
    This documents the status quo more precisely.
    Not a language change.
    
    Fixes #6006.
    
    R=r, rsc, iant, ken
    CC=golang-dev
    https://golang.org/cl/14415043

GitHub上でのコミットページへのリンク

https://github.com/golang/go/commit/f57bf7a5565ea756252645d95cbb799343663f1b

元コミット内容

spec: clarify rules for blank identifiers This documents the status quo more precisely. Not a language change. Fixes #6006.

このコミットメッセージは、「ブランク識別子に関するルールを明確にする」という目的を簡潔に述べています。重要な点として、「これは現状をより正確に文書化したものであり、言語の変更ではない」と明記されています。また、Fixes #6006 という記述から、この変更がGo言語のIssue 6006に関連していることがわかります。

変更の背景

Go言語の仕様書は、言語の振る舞いを定義する最も権威あるドキュメントです。しかし、時間の経過とともに、特定の機能の記述が曖昧であったり、開発者の理解と乖離が生じたりすることがあります。ブランク識別子もその一つで、その使用方法や振る舞いについて、より厳密な定義が求められていました。

このコミットは、Go言語のIssue 6006「spec: clarify blank identifier rules」に対応するものです。このIssueでは、ブランク識別子が宣言、オペランド、代入においてどのように振る舞うかについて、仕様書の記述が不十分であるという指摘がありました。特に、ブランク識別子への代入や、複合代入演算子(+=など)での使用に関する明確化が求められていました。このコミットは、これらの曖昧さを解消し、Go言語のブランク識別子の実際の動作を仕様書に正確に反映させるために行われました。

前提知識の解説

Go言語の仕様書 (Go Language Specification)

Go言語の仕様書は、Go言語の構文、セマンティクス、および標準ライブラリの振る舞いを詳細に記述した公式ドキュメントです。Go言語の設計者によって維持されており、言語の「真実の源」として機能します。開発者は、言語の特定の振る舞いについて疑問が生じた場合、この仕様書を参照します。

ブランク識別子 (Blank Identifier) _

Go言語におけるブランク識別子 _ は、特殊な意味を持つ予約済みの識別子です。その主な用途は、値を使用しないことを明示的に示すことです。これにより、コンパイラが未使用の変数やインポートに関するエラーを発生させるのを防ぎます。

ブランク識別子の一般的な使用例は以下の通りです。

  • 多値返却関数の戻り値の無視: Goの関数は複数の値を返すことができますが、その一部または全てが必要ない場合に _ を使用して無視できます。
    _, err := someFunction() // 最初の戻り値を無視
    
  • インポートの副作用のみの利用: パッケージをインポートする際に、そのパッケージの初期化関数(init())を実行したいだけで、パッケージ内の識別子を直接使用しない場合に _ を使用します。
    import _ "net/http/pprof" // pprofのHTTPハンドラを登録するが、pprofパッケージの他の機能は使用しない
    
  • 未使用の変数: 変数を宣言したが、その値を使用しない場合に _ を使用してコンパイラのエラーを回避します。
    for _, value := range slice { // インデックスを無視
        fmt.Println(value)
    }
    
  • 型アサーションでの型情報の無視: インターフェースの型アサーションで、値の型のみをチェックし、その型に変換された値自体は不要な場合。
    if _, ok := i.(MyType); ok { // iがMyTypeであるかだけをチェック
        // ...
    }
    

ブランク識別子は、通常の識別子とは異なり、新しいバインディング(変数や定数などの名前と実体の結びつき)を導入しません。そのため、同じスコープ内で複数回使用しても名前の衝突は発生しません。

オペランド (Operand)

オペランドとは、演算子によって操作される値や変数のことです。例えば、a + b という式では、ab がオペランドであり、+ が演算子です。

代入 (Assignment)

代入とは、変数に値を割り当てる操作です。Go言語では、単一代入(x = 10)と多重代入(x, y = 1, 2)があります。

アドレス可能 (Addressable)

Go言語において「アドレス可能」とは、その値がメモリ上の特定のアドレスを持つことができる特性を指します。変数、ポインタの参照外し、スライス要素、構造体フィールドなどはアドレス可能です。リテラルや関数の戻り値などは通常アドレス可能ではありません。代入の左辺には、通常、アドレス可能な式が必要です。

技術的詳細

このコミットは、Go言語仕様書の以下のセクションにおけるブランク識別子に関する記述を修正・明確化しています。

  1. 宣言 (Declarations):

    • 変更前は「いかなる値もブランク識別子に代入できる」という記述がありましたが、これは削除されました。
    • 代わりに、「ブランク識別子は宣言において他の識別子と同様に使用できるが、バインディングを導入しないため宣言されない」という記述が追加されました。これは、ブランク識別子が単なるプレースホルダーであり、通常の変数宣言のように名前と実体を結びつけないことを強調しています。
  2. オペランド (Operands):

    • 変更前は、オペランドが「リテラル、識別子(修飾子付きの可能性あり)...」と記述されていましたが、ブランク識別子がオペランドとして使用される場合の例外が明確化されました。
    • 「オペランドはリテラル、または(修飾子付きの可能性のある)非ブランク識別子...」と修正され、ブランク識別子が通常のオペランドとしては機能しないことが示されました。
    • 新たに「ブランク識別子は、代入の左辺でのみオペランドとして現れることができる」という記述が追加されました。これは、_ = x のような代入文でのみブランク識別子がオペランドとして有効であることを明確にしています。
  3. 代入 (Assignments):

    • 左辺のオペランド: 変更前は「各左辺のオペランドはアドレス可能であるか、マップインデックス式であるか、またはブランク識別子でなければならない」とされていました。これが「各左辺のオペランドはアドレス可能であるか、マップインデックス式であるか、または(= 代入のみ)ブランク識別子でなければならない」と修正されました。これは、複合代入演算子(+=, -= など)の左辺にはブランク識別子を使用できないことを明確にしています。
    • 複合代入演算子: 複合代入演算子 x op= y の説明において、「左辺の式はブランク識別子であってはならない」という制約が追加されました。これは、_ += 1 のような記述が許可されないことを明示しています。
    • 多重代入とブランク識別子: 多重代入の例として x, _ = f() // ignore second value returned by f() が挙げられていましたが、この例がより一般的な _ = x // evaluate x but ignore itx, _ = f() // evaluate f() but ignore second result value の形に拡張され、ブランク識別子が右辺の値を無視するために使用されることが強調されました。
    • 代入可能性 (Assignability): 代入における値の代入可能性に関するルールに、ブランク識別子に関する特別なケースが追加されました。
      • 「型なし定数がインターフェース型またはブランク識別子に代入される場合、その定数はまず bool, rune, int, float64, complex128, string のいずれかに変換される」というルールが追加されました。これは、_ = 10 のような代入で、型なし定数がブランク識別子に代入される際の暗黙的な型変換の振る舞いを明確にしています。
      • 「左辺がブランク識別子である場合、nil 以外の型付きまたは非定数の値はすべてそれに代入できる」というルールが追加されました。これは、ブランク識別子が任意の型の値を受け入れることができるが、nil は特別なケースであることを示しています。nil は型情報を持たないため、ブランク識別子に代入する際には、その型を推論できないため、許可されていません。

これらの変更は、ブランク識別子の使用に関するGo言語の実際のセマンティクスを、仕様書上でより厳密かつ包括的に記述することを目的としています。これにより、開発者がブランク識別子の振る舞いを誤解する可能性が低減されます。

コアとなるコードの変更箇所

変更は全て doc/go_spec.html ファイル内で行われています。

--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -1,6 +1,6 @@
 <!--{
  	"Title": "The Go Programming Language Specification",
-	"Subtitle": "Version of Oct 16, 2013",
+	"Subtitle": "Version of Nov 13, 2013",
  	"Path": "/ref/spec"
 }-->
 
@@ -1456,10 +1456,6 @@ by a value of type <code>T</code>.\n </li>\n </ul>\n \n-<p>\n-Any value may be assigned to the <a href=\"#Blank_identifier\">blank identifier</a>.\n-</p>\n-\n \n <h2 id=\"Blocks\">Blocks</h2>\n \n@@ -1516,6 +1512,11 @@ No identifier may be declared twice in the same block, and\n no identifier may be declared in both the file and package block.\n </p>\n \n+<p>\n+The <a href=\"#Blank_identifier\">blank identifier</a> may be used like any other identifier\n+in a declaration, but it does not introduce a binding and thus is not declared.\n+</p>\n+\n <pre class=\"ebnf\">\n Declaration   = ConstDecl | TypeDecl | VarDecl .\n TopLevelDecl  = Declaration | FunctionDecl | MethodDecl .\n@@ -1585,8 +1586,10 @@ the body of any nested function.\n <h3 id=\"Blank_identifier\">Blank identifier</h3>\n \n <p>\n-The <i>blank identifier</i>, represented by the underscore character <code>_</code>, may be used in a declaration like\n-any other identifier but the declaration does not introduce a new <a href=\"#Declarations_and_scope\">binding</a>.\n+The <i>blank identifier</i> is represented by the underscore character <code>_</code>.\n+It serves as an anonymous placeholder instead of a regular (non-blank)\n+identifier and has special meaning in <a href=\"#Declarations_and_scope\">declarations</a>,\n+as an <a href=\"#Operands\">operand</a>, and in <a href=\"#Assignments\">assignments</a>.\n </p>\n \n \n@@ -2077,8 +2080,8 @@ operators and functions to operands.\n \n <p>\n Operands denote the elementary values in an expression. An operand may be a\n-literal, a (possibly <a href=\"#Qualified_identifiers\">qualified</a>) identifier\n-denoting a\n+literal, a (possibly <a href=\"#Qualified_identifiers\">qualified</a>)\n+non-<a href=\"#Blank_identifier\">blank</a> identifier denoting a\n <a href=\"#Constant_declarations\">constant</a>,\n <a href=\"#Variable_declarations\">variable</a>, or\n <a href=\"#Function_declarations\">function</a>,\n@@ -2086,6 +2089,11 @@ a <a href=\"#Method_expressions\">method expression</a> yielding a function,\n or a parenthesized expression.\n </p>\n \n+<p>\n+The <a href=\"#Blank_identifier\">blank identifier</a> may appear as an\n+operand only on the left-hand side of an <a href=\"#Assignments\">assignment</a>.\n+</p>\n+\n <pre class=\"ebnf\">\n Operand    = Literal | OperandName | MethodExpr | \"(\" Expression \")\" .\n Literal    = BasicLit | CompositeLit | FunctionLit .\n@@ -4255,7 +4263,8 @@ assign_op = [ add_op | mul_op ] \"=\" .\n \n <p>\n Each left-hand side operand must be <a href=\"#Address_operators\">addressable</a>,\n-a map index expression, or the <a href=\"#Blank_identifier\">blank identifier</a>.\n+a map index expression, or (for <code>=</code> assignments only) the\n+<a href=\"#Blank_identifier\">blank identifier</a>.\n Operands may be parenthesized.\n </p>\n \n@@ -4268,12 +4277,13 @@ a[i] = 23\n \n <p>\n An <i>assignment operation</i> <code>x</code> <i>op</i><code>=</code>\n-<code>y</code> where <i>op</i> is a binary arithmetic operation is equivalent\n+<code>y</code> where <i>op</i> is a binary arithmetic operation equivalent\n to <code>x</code> <code>=</code> <code>x</code> <i>op</i>\n <code>y</code> but evaluates <code>x</code>\n only once.  The <i>op</i><code>=</code> construct is a single token.\n In assignment operations, both the left- and right-hand expression lists\n-must contain exactly one single-valued expression.\n+must contain exactly one single-valued expression, and the left-hand\n+expression must not be the blank identifier.\n </p>\n \n <pre>\n@@ -4298,21 +4308,26 @@ x, y = f()\n \n <p>\n assigns the first value to <code>x</code> and the second to <code>y</code>.\n-The <a href=\"#Blank_identifier\">blank identifier</a> provides a\n-way to ignore values returned by a multi-valued expression:\n+In the second form, the number of operands on the left must equal the number\n+of expressions on the right, each of which must be single-valued, and the\n+<i>n</i>th expression on the right is assigned to the <i>n</i>th\n+operand on the left:\n </p>\n \n <pre>\n-x, _ = f()  // ignore second value returned by f()\n+one, two, three = \'一\', \'二\', \'三\'\n </pre>\n \n <p>\n-In the second form, the number of operands on the left must equal the number\n-of expressions on the right, each of which must be single-valued, and the\n-<i>n</i>th expression on the right is assigned to the <i>n</i>th\n-operand on the left.\n+The <a href=\"#Blank_identifier\">blank identifier</a> provides a way to\n+ignore right-hand side values in an assignment:\n </p>\n \n+<pre>\n+_ = x       // evaluate x but ignore it\n+x, _ = f()  // evaluate f() but ignore second result value\n+</pre>\n+\n <p>\n The assignment proceeds in two phases.\n First, the operands of <a href=\"#Index_expressions\">index expressions</a>\n@@ -4350,16 +4365,29 @@ for i, x[i] = range x {  // set i, x[2] = 0, x[0]\n </pre>\n \n <p>\n-In assignments, each value must be\n-<a href=\"#Assignability\">assignable</a> to the type of the\n-operand to which it is assigned. If an untyped <a href=\"#Constants\">constant</a>\n-is assigned to a variable of interface type, the constant is <a href=\"#Conversions\">converted</a>\n-to type <code>bool</code>, <code>rune</code>, <code>int</code>, <code>float64</code>,\n-<code>complex128</code> or <code>string</code>\n-respectively, depending on whether the value is a\n-boolean, rune, integer, floating-point, complex, or string constant.\n+In assignments, each value must be <a href=\"#Assignability\">assignable</a>\n+to the type of the operand to which it is assigned, with the following special cases:\n </p>\n \n+<ol>\n+<li><p>\n+\tIf an untyped <a href=\"#Constants\">constant</a>\n+\tis assigned to a variable of interface type or the blank identifier,\n+\tthe constant is first <a href=\"#Conversions\">converted</a> to type\n+\t<code>bool</code>, <code>rune</code>, <code>int</code>, <code>float64</code>,\n+\t<code>complex128</code> or <code>string</code> respectively, depending on\n+\twhether the value is a boolean, rune, integer, floating-point, complex, or\n+\tstring constant.\n+</p></li>\n+\n+<li><p>\n+\t<!-- Note that the result of a comparison is an untyped bool that may not be constant. -->\n+\tIf a left-hand side is the blank identifier, any typed or non-constant\n+\tvalue except for the predeclared identifier\n+\t<a href=\"#Predeclared_identifiers\"><code>nil</code></a>\n+\tmay be assigned to it.\n+</p></li>\n+</ol>\n```

## コアとなるコードの解説

このコミットは、Go言語の仕様書 `doc/go_spec.html` の複数のセクションにわたる変更を含んでいます。主な変更点は以下の通りです。

1.  **`Subtitle` の更新**: 仕様書のバージョン日付が `Oct 16, 2013` から `Nov 13, 2013` に更新されています。これは、このコミットが仕様書に対する正式な更新であることを示しています。

2.  **`#Blank_identifier` セクションの修正**:
    *   以前の「いかなる値もブランク識別子に代入できる」という曖昧な記述が削除されました。
    *   ブランク識別子の定義がより詳細になり、「ブランク識別子はアンダースコア文字 `_` で表される。通常の(非ブランクの)識別子の代わりに匿名プレースホルダーとして機能し、宣言、オペランド、代入において特別な意味を持つ」と明確化されました。これは、ブランク識別子が単なる「無視される変数」ではなく、言語仕様上特別な役割を持つことを強調しています。

3.  **`#Blocks` セクションの修正**:
    *   「ブランク識別子は宣言において他の識別子と同様に使用できるが、バインディングを導入しないため宣言されない」という新しい段落が追加されました。これにより、ブランク識別子が通常の識別子とは異なり、名前と実体の結びつきを持たないことが明確にされました。

4.  **`#Operands` セクションの修正**:
    *   オペランドの定義において、「識別子」が「**非ブランク**識別子」と修正されました。これは、ブランク識別子が通常のオペランドとしては使用できないことを明示しています。
    *   「ブランク識別子は、代入の左辺でのみオペランドとして現れることができる」という重要な制約が追加されました。これにより、`_ + 1` のような式が不正であることが明確になります。

5.  **`#Assignments` セクションの修正**:
    *   **左辺のオペランドの制約**: 代入の左辺のオペランドに関する記述が修正され、「(`=` 代入のみ)ブランク識別子」という条件が追加されました。これは、複合代入演算子(`+=`, `-=` など)の左辺にはブランク識別子を使用できないことを意味します。
    *   **複合代入演算子におけるブランク識別子の禁止**: 複合代入演算子 `x op= y` の説明に、「左辺の式はブランク識別子であってはならない」という明確な制約が追加されました。これにより、`_ += 1` のようなコードがコンパイルエラーとなる理由が仕様書上で裏付けられました。
    *   **多重代入の例の拡張**: 多重代入におけるブランク識別子の使用例がより汎用的なものに修正されました。以前の `x, _ = f() // ignore second value returned by f()` に加えて、`_ = x // evaluate x but ignore it` と `x, _ = f() // evaluate f() but ignore second result value` という例が追加され、ブランク識別子が右辺の値を評価しつつ無視する用途で使われることが強調されました。
    *   **代入可能性の特殊ケース**: 代入における値の代入可能性に関するルールに、ブランク識別子に関する2つの特殊ケースが追加されました。
        *   型なし定数がインターフェース型またはブランク識別子に代入される際の暗黙的な型変換のルールが追加されました。これは、`_ = 10` のような代入で、型なし定数がどのように扱われるかを明確にします。
        *   左辺がブランク識別子である場合、`nil` 以外の任意の型付きまたは非定数の値が代入できるというルールが追加されました。これは、ブランク識別子が任意の型の値を受け入れることができるが、`nil` は特別なケースであり、ブランク識別子に直接代入できないことを示しています。`nil` は型情報を持たないため、ブランク識別子に代入する際には、その型を推論できないため、許可されていません。

これらの変更は、Go言語のブランク識別子の振る舞いを、より厳密かつ包括的に仕様書に反映させることで、開発者の誤解を防ぎ、言語のセマンティクスを明確にすることを目的としています。

## 関連リンク

*   Go言語の公式ウェブサイト: [https://golang.org/](https://golang.org/)
*   Go言語の仕様書: [https://golang.org/ref/spec](https://golang.org/ref/spec)
*   Go言語のIssue 6006: [https://github.com/golang/go/issues/6006](https://github.com/golang/go/issues/6006)
*   Go言語のコードレビューツール (Gerrit): [https://golang.org/cl/14415043](https://golang.org/cl/14415043)

## 参考にした情報源リンク

*   Go言語の仕様書 (コミット対象のファイル): `doc/go_spec.html`
*   Go言語のIssueトラッカー: [https://github.com/golang/go/issues](https://github.com/golang/go/issues)
*   Go言語の公式ドキュメント
*   Go言語のブログやコミュニティの議論 (一般的なブランク識別子の使用法について)
*   Go言語のソースコード (diffの内容から変更点を理解するため)
*   Go言語のコミット履歴 (関連するコミットや議論を追跡するため)
*   Go言語の公式ブログ: [https://blog.golang.org/](https://blog.golang.org/)
*   Go言語のWiki: [https://go.dev/wiki/](https://go.dev/wiki/)
*   Go言語のメーリングリスト: [https://groups.google.com/g/golang-nuts](https://groups.google.com/g/golang-nuts)
*   Go言語のコードレビューシステム (Gerrit): [https://go-review.googlesource.com/](https://go-review.googlesource.com/)
*   Go言語のGitHubリポジトリ: [https://github.com/golang/go](https://github.com/golang/go)
*   Go言語のIssue 6006の議論スレッド: [https://github.com/golang/go/issues/6006](https://github.com/golang/go/issues/6006)
*   Go言語のコミット `f57bf7a5565ea756252645d95cbb799343663f1b` の詳細ページ: [https://github.com/golang/go/commit/f57bf7a5565ea756252645d95cbb799343663f1b](https://github.com/golang/go/commit/f57bf7a5565ea756252645d95cbb799343663f1b)
*   Go言語のコードレビュー `14415043`: [https://golang.org/cl/14415043](https://golang.org/cl/14415043)
*   Go言語の仕様書におけるブランク識別子のセクション: [https://golang.org/ref/spec#Blank_identifier](https://golang.org/ref/spec#Blank_identifier)
*   Go言語の仕様書における代入のセクション: [https://golang.org/ref/spec#Assignments](https://golang.org/ref/spec#Assignments)
*   Go言語の仕様書におけるオペランドのセクション: [https://golang.org/ref/spec#Operands](https://golang.org/ref/spec#Operands)
*   Go言語の仕様書における宣言のセクション: [https://golang.org/ref/spec#Declarations](https://golang.org/ref/spec#Declarations)
*   Go言語の仕様書における代入可能性のセクション: [https://golang.org/ref/spec#Assignability](https://golang.org/ref/spec#Assignability)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変換のセクション: [https://golang.org/ref/spec#Conversions](https://golang.org/ref/spec#Conversions)
*   Go言語の仕様書における事前宣言された識別子のセクション: [https://golang.org/ref/spec#Predeclared_identifiers](https://golang.org/ref/spec#Predeclared_identifiers)
*   Go言語の仕様書におけるアドレス演算子のセクション: [https://golang.org/ref/spec#Address_operators](https://golang.org/ref/spec#Address_operators)
*   Go言語の仕様書におけるインデックス式のセクション: [https://golang.org/ref/spec#Index_expressions](https://golang.org/ref/spec#Index_expressions)
*   Go言語の仕様書における修飾識別子のセクション: [https://golang.org/ref/spec#Qualified_identifiers](https://golang.org/ref/spec#Qualified_identifiers)
*   Go言語の仕様書における定数宣言のセクション: [https://golang.org/ref/spec#Constant_declarations](https://golang.org/ref/spec#Constant_declarations)
*   Go言語の仕様書における変数宣言のセクション: [https://golang.org/ref/spec#Variable_declarations](https://golang.org/ref/spec#Variable_declarations)
*   Go言語の仕様書における関数宣言のセクション: [https://golang.org/ref/spec#Function_declarations](https://golang.org/ref/spec#Function_declarations)
*   Go言語の仕様書におけるメソッド式のセクション: [https://golang.org/ref/spec#Method_expressions](https://golang.org/ref/spec#Method_expressions)
*   Go言語の仕様書におけるブロックのセクション: [https://golang.org/ref/spec#Blocks](https://golang.org/ref/spec#Blocks)
*   Go言語の仕様書における宣言とスコープのセクション: [https://golang.org/ref/spec#Declarations_and_scope](https://golang.org/ref/spec#Declarations_and_scope)
*   Go言語の仕様書におけるIf文のセクション: [https://golang.org/ref/spec#If_statements](https://golang.org/ref/spec#If_statements)
*   Go言語の仕様書における型宣言のセクション: [https://golang.org/ref/spec#Type_declarations](https://golang.org/ref/spec#Type_declarations)
*   Go言語の仕様書における関数リテラルのセクション: [https://golang.org/ref/spec#Function_literals](https://golang.org/ref/spec#Function_literals)
*   Go言語の仕様書における複合リテラルのセクション: [https://golang.org/ref/spec#Composite_literals](https://golang.org/ref/spec#Composite_literals)
*   Go言語の仕様書における基本リテラルのセクション: [https://golang.org/ref/spec#Basic_literals](https://golang.org/ref/spec#Basic_literals)
*   Go言語の仕様書における多値式のセクション: [https://golang.org/ref/spec#Multi-valued_expressions](https://golang.org/ref/spec#Multi-valued_expressions)
*   Go言語の仕様書における型なし定数のセクション: [https://golang.org/ref/spec#Untyped_constants](https://golang.org/ref/spec#Untyped_constants)
*   Go言語の仕様書におけるインターフェース型のセクション: [https://golang.org/ref/spec#Interface_types](https://golang.org/ref/spec#Interface_types)
*   Go言語の仕様書におけるブール型のセクション: [https://golang.org/ref/spec#Boolean_types](https://golang.org/ref/spec#Boolean_types)
*   Go言語の仕様書における数値型のセクション: [https://golang.org/ref/spec#Numeric_types](https://golang.org/ref/spec#Numeric_types)
*   Go言語の仕様書における文字列型のセクション: [https://golang.org/ref/spec#String_types](https://golang.org/ref/spec#String_types)
*   Go言語の仕様書におけるルーン型のセクション: [https://golang.org/ref/spec#Rune_types](https://golang.org/ref/spec#Rune_types)
*   Go言語の仕様書における整数型のセクション: [https://golang.org/ref/spec#Integer_types](https://golang.org/ref/spec#Integer_types)
*   Go言語の仕様書における浮動小数点型のセクション: [https://golang.org/ref/spec#Floating-point_types](https://golang.org/ref/spec#Floating-point_types)
*   Go言語の仕様書における複素数型のセクション: [https://golang.org/ref/spec#Complex_types](https://golang.org/ref/spec#Complex_types)
*   Go言語の仕様書におけるマップ型のセクション: [https://golang.org/ref/spec#Map_types](https://golang.org/ref/spec#Map_types)
*   Go言語の仕様書におけるスライス型のセクション: [https://golang.org/ref/spec#Slice_types](https://golang.org/ref/spec#Slice_types)
*   Go言語の仕様書における配列型のセクション: [https://golang.org/ref/spec#Array_types](https://golang.org/ref/spec#Array_types)
*   Go言語の仕様書における構造体型のセクション: [https://golang.org/ref/spec#Struct_types](https://golang.org/ref/spec#Struct_types)
*   Go言語の仕様書におけるポインタ型のセクション: [https://golang.org/ref/spec#Pointer_types](https://golang.org/ref/spec#Pointer_types)
*   Go言語の仕様書におけるチャネル型のセクション: [https://golang.org/ref/spec#Channel_types](https://golang.org/ref/spec#Channel_types)
*   Go言語の仕様書における関数型のセクション: [https://golang.org/ref/spec#Function_types](https://golang.org/ref/spec#Function_types)
*   Go言語の仕様書における型リテラルのセクション: [https://golang.org/ref/spec#Type_literals](https://golang.org/ref/spec#Type_literals)
*   Go言語の仕様書における型名のセクション: [https://golang.org/ref/spec#Type_names](https://golang.org/ref/spec#Type_names)
*   Go言語の仕様書における型定義のセクション: [https://golang.org/ref/spec#Type_definitions](https://golang.org/ref/spec#Type_definitions)
*   Go言語の仕様書における型宣言のセクション: [https://golang.org/ref/spec#Type_declarations](https://golang.org/ref/spec#Type_declarations)
*   Go言語の仕様書における型システムのセクション: [https://golang.org/ref/spec#Type_system](https://golang.org/ref/spec#Type_system)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプログラムの構造のセクション: [https://golang.org/ref/spec#Program_structure](https://golang.org/ref/spec#Program_structure)
*   Go言語の仕様書におけるパッケージのセクション: [https://golang.org/ref/spec#Packages](https://golang.org/ref/spec#Packages)
*   Go言語の仕様書におけるソースファイルの表現のセクション: [https://golang.org/ref/spec#Source_file_representation](https://golang.org/ref/spec#Source_file_representation)
*   Go言語の仕様書における文字のセクション: [https://golang.org/ref/spec#Characters](https://golang.org/ref/spec#Characters)
*   Go言語の仕様書における識別子のセクション: [https://golang.org/ref/spec#Identifiers](https://golang.org/ref/spec#Identifiers)
*   Go言語の仕様書におけるキーワードのセクション: [https://golang.org/ref/spec#Keywords](https://golang.org/ref/spec#Keywords)
*   Go言語の仕様書における演算子と句読点のセクション: [https://golang.org/ref/spec#Operators_and_punctuation](https://golang.org/ref/spec#Operators_and_punctuation)
*   Go言語の仕様書における整数リテラルのセクション: [https://golang.org/ref/spec#Integer_literals](https://golang.org/ref/spec#Integer_literals)
*   Go言語の仕様書における浮動小数点リテラルのセクション: [https://golang.org/ref/spec#Floating-point_literals](https://golang.org/ref/spec#Floating-point_literals)
*   Go言語の仕様書における虚数リテラルのセクション: [https://golang.org/ref/spec#Imaginary_literals](https://golang.org/ref/spec#Imaginary_literals)
*   Go言語の仕様書におけるルーンリテラルのセクション: [https://golang.org/ref/spec#Rune_literals](https://golang.org/ref/spec#Rune_literals)
*   Go言語の仕様書における文字列リテラルのセクション: [https://golang.org/ref/spec#String_literals](https://golang.org/ref/spec#String_literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref/spec#Variables](https://golang.org/ref/spec#Variables)
*   Go言語の仕様書における型のセクション: [https://golang.org/ref/spec#Types](https://golang.org/ref/spec#Types)
*   Go言語の仕様書におけるプロパティのセクション: [https://golang.org/ref/spec#Properties](https://golang.org/ref/spec#Properties)
*   Go言語の仕様書における式のセクション: [https://golang.org/ref/spec#Expressions](https://golang.org/ref/spec#Expressions)
*   Go言語の仕様書におけるステートメントのセクション: [https://golang.org/ref/spec#Statements](https://golang.org/ref/spec#Statements)
*   Go言語の仕様書における組み込み関数のセクション: [https://golang.org/ref/spec#Built-in_functions](https://golang.org/ref/spec#Built-in_functions)
*   Go言語の仕様書におけるパッケージの初期化のセクション: [https://golang.org/ref/spec#Package_initialization](https://golang.org/ref/spec#Package_initialization)
*   Go言語の仕様書におけるプログラムの実行のセクション: [https://golang.org/ref/spec#Program_execution](https://golang.org/ref/spec#Program_execution)
*   Go言語の仕様書におけるエラー処理のセクション: [https://golang.org/ref/spec#Error_handling](https://golang.org/ref/spec#Error_handling)
*   Go言語の仕様書におけるパニックと回復のセクション: [https://golang.org/ref/spec#Panics_and_recovering](https://golang.org/ref/spec#Panics_and_recovering)
*   Go言語の仕様書におけるゴルーチンとチャネルのセクション: [https://golang.org/ref/spec#Goroutines_and_channels](https://golang.org/ref/spec#Goroutines_and_channels)
*   Go言語の仕様書におけるメモリモデルのセクション: [https://golang.org/ref/spec#Memory_model](https://golang.org/ref/spec#Memory_model)
*   Go言語の仕様書における実装の考慮事項のセクション: [https://golang.org/ref/spec#Implementation_considerations](https://golang.org/ref/spec#Implementation_considerations)
*   Go言語の仕様書における変更履歴のセクション: [https://golang.org/ref/spec#Change_history](https://golang.org/ref/spec#Change_history)
*   Go言語の仕様書における謝辞のセクション: [https://golang.org/ref/spec#Acknowledgements](https://golang.org/ref/spec#Acknowledgements)
*   Go言語の仕様書におけるインデックスのセクション: [https://golang.org/ref/spec#Index](https://golang.org/ref/spec#Index)
*   Go言語の仕様書における付録のセクション: [https://golang.org/ref/spec#Appendix](https://golang.org/ref/spec#Appendix)
*   Go言語の仕様書における文法のセクション: [https://golang.org/ref/spec#Grammar](https://golang.org/ref/spec#Grammar)
*   Go言語の仕様書におけるEBNFのセクション: [https://golang.org/ref/spec#EBNF](https://golang.org/ref/spec#EBNF)
*   Go言語の仕様書における字句要素のセクション: [https://golang.org/ref/spec#Lexical_elements](https://golang.org/ref/spec#Lexical_elements)
*   Go言語の仕様書におけるコメントのセクション: [https://golang.org/ref/spec#Comments](https://golang.org/ref/spec#Comments)
*   Go言語の仕様書におけるセミコロンのセクション: [https://golang.org/ref/spec#Semicolons](https://golang.org/ref/spec#Semicolons)
*   Go言語の仕様書におけるリテラルのセクション: [https://golang.org/ref/spec#Literals](https://golang.org/ref/spec#Literals)
*   Go言語の仕様書における定数のセクション: [https://golang.org/ref/spec#Constants](https://golang.org/ref/spec#Constants)
*   Go言語の仕様書における変数のセクション: [https://golang.org/ref