7
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

UbuntuでGoの開発環境をインストールしてHelloWorldしよう!

Last updated at Posted at 2019-05-01

はじめに

この記事では、

  1. UbuntuにGo言語の開発環境をインストールする
  2. HelloWorldする
    の2つについて書いていきまーす

前提環境

  • Ubuntu 18.04.2 LTS

1. UbuntuにGo言語の開発環境をインストールする

ctrl+alt+t キーを押すことでターミナルを開きます。
Ubuntuでターミナルを開いて以下のコマンドを入力します。

$ sudo apt install golang

これでgoのインストールが完了するはずです!

1-1.png

次は、ちゃんとgoの開発環境が入ってるか確認します。
以下のコマンドを実行することで、現在入っているgoのバージョンを確認できます。

$ go version
go version go1.10.4 linux/amd64

1-2.png

2. HelloWorldする

それでは無事goの環境構築ができたところで、HelloWorldをしましょう!
以下のコードを入力してください。

hello.go
package main

import "fmt"

func main() {
  fmt.Printf("Hello World!\n")
}

そして、ターミナルでファイルを保存したディレクトリを開き、以下のコマンドを実行するとHello World完了です!

$ go run hello.go
Hello World!

2-1.png

まとめ

この記事では、Go言語の開発環境を構築し、Hello Worldをしました!
今後もGoに関連する記事を書いていくのでよろしくおねがいします!

参考記事

7
4
2

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
7
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?