2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Go言語の環境構築~HelloWorld出力(Windows)

Posted at

はじめに

WindowsでGo言語の開発環境を構築し、HelloWorldを出力する方法を説明する

Goのインストール

  1. https://go.dev/dl/ にアクセスしてgo1.21.4.windows-amd64.msiをダウンロードする
    image.png

  2. ダウンロードが完了したら、go1.21.4.windows-amd64.msiをダブルクリック

  3. Nextをクリック
    image.png

  4. Nextをクリック
    image.png

  5. Nextをクリック
    image.png

  6. Installをクリック
    image.png

  7. Finishをクリック
    image.png

インストールの確認

コマンドプロンプトでGoのバージョン表示して、インストールが確認されていることを確認する

> go version
go version go1.21.4 windows/amd64

表示されない場合
環境変数の設定を確認する
参考:Go言語の環境変数を設定する方法

HelloWorld出力

go.modの作成

空のフォルダを作成し、以下のコマンドを実行する

go mod init helloworld

コマンドを実行するとgo.modファイルが作成される

補足】Go言語のアプリケーションやライブラリは「モジュール」という塊になっている
go modコマンドによってプロジェクトの中心となるgo.modファイルを作成する

main.goの作成

同じフォルダ内でmain.goを作成する

package main

import "fmt"

func main() {
	fmt.Println("Hello World")
}

コンパイル&実行

以下のコマンドを実行する

コンパイル

go build

実行

.\helloworld.exe

確認

Hello Worldが出力されることを確認する
image.png

参考

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?