> For the complete documentation index, see [llms.txt](https://andmorefine.gitbook.io/learn-go-with-tests/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://andmorefine.gitbook.io/learn-go-with-tests/build-an-application/app-intro.md).

# はじめに

これで、*GO言語：基礎* のセクションを理解し、Goの言語機能の大部分とTDDの方法をしっかりと理解することができました。

次のセクションでは、アプリケーションを構築します。

各章では、前の章を反復しながら、製品の所有者の指示に従ってアプリケーションの機能を拡張していきます。

優れたコードを書きやすくするための新しい概念が紹介されますが、新しい教材のほとんどは、Goの標準ライブラリから何ができるかを学ぶことになります。

この学習が終わる頃には、テストに裏打ちされたGoのアプリケーションを反復的に書く方法をしっかりと理解しているはずです。

* [HTTPサーバー](/learn-go-with-tests/build-an-application/http-server.md) - HTTP リクエストを受信し、それに応答するアプリケーションを作成します。
* [JSON、ルーティング、埋め込み](/learn-go-with-tests/build-an-application/json.md) - エンドポイントがJSONを返すようにし、ルーティングの方法を調べ、型の埋め込みについて学びます。
* [IO、並び替え](/learn-go-with-tests/build-an-application/io.md) - ディスクからデータを永続化して読み込み、データのソートを行います。
* [コマンドライン、パッケージ構造](/learn-go-with-tests/build-an-application/command-line.md) - これまでに作ったコードを利用して、コマンドラインインターフェースを作る新しいプログラムを作成します。これは、複数のバイナリをサポートするようにプロジェクトを再構築することになります。
* [時間](/learn-go-with-tests/build-an-application/time.md) - ユーザーの入力に応じて、異なる時間に発生するいくつかのアクティビティをスケジュールします。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://andmorefine.gitbook.io/learn-go-with-tests/build-an-application/app-intro.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
