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

【川原のGo言語&Elixir奮闘記】#2 今日はGoでHello world

Last updated at Posted at 2019-09-20

Hello world私だよ。

今日はGoのダウンロードとHello worldまでやっていくよ。

以下のサイトでGoをダウンロードしていくよ。

https://golang.org

普通に.msiをインストールしたよ。

以下の記事を参考にしたよ。

https://qiita.com/ta9star/items/49a3be887698ff6c1b58

ダウンロードが終わったら次はHello worldをやってみるよ。

今回の開発環境はVScodeだよ。

VScodeを開いてFileからNew fileを選択するよ。

以下のプログラムを用意したよ。

.go
package main

import "fmt"

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

これをコピペしてFileからSaveを選択するよ。

保存するときに型を.goに変えるよ。

ここまで来たらDebugしてみるよ。

どこかでそのファイルがHello worldって言ってるよ。

プログラムの下にあるシェルで言ってるよ。

今日はここまでだよ。

最近、雨が中山きんに君みたいなことするから通学に傘は必須だよ。

また来週。

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?