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?

goでプロジェクトを立ち上げる:hello, world!

Posted at

Go言語のインストール

Goの公式サイトからインストーラをダウンロードし、インストールする。

プロジェクトのディレクトリを作成:

作業したい場所にプロジェクト用のディレクトリを作成する。

zsh
% mkdir go_sample && cd go_sample

Go Modulesの初期化

プロジェクトディレクトリ内で以下のコマンドを実行し、モジュールを初期化する。

zsh
% go mod init go_sample

% プログラムの作成
main.go ファイルを作成し、基本的なプログラムを記述する。

main.go
package main

import "fmt"

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

ビルドと実行

プロジェクトディレクトリで以下のコマンドを実行し、プログラムをビルドして実行する。

zsh
go build
# 生成されたバイナリファイルを実行
./go_sample

またビルドせずに実行することも可能

zsh
go run main.go
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?