0
0

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 3 years have passed since last update.

GoでHello vinaka!(World!)を出す

Posted at

Goに触れてみたかったので、学習をはじめてみました。

#ソフトウェアのインストール

Go公式でダウンロード

image.png

##環境に合わせて、ダウンロード
image.png

##手順に沿ってインストール
image.png

image.png
インストールをクリック
image.png

少し時間かかります。
image.png

image.png

ゴミ箱に入れます。
image.png

#Hello vinaka!(World!)の出力(失敗)

main.go
package main

import (
	"fmt"
)

func main() {
	fmt.Println("Hello vinaka!")
}
% go build main.go
zsh: command not found: go

"Hello vinaka!"が表示されない。

#GoをHomebrew のコマンドでインストール

% brew install go

%go version
go version go1.14.6 darwin/amd64

#Hello vinaka!(World!)の出力(成功)

% go run main.go
Hello vinaka!

#参考
Golang Macへのインストール〜Homebrewを使って〜

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?