LoginSignup
1
0

Go言語とは

Last updated at Posted at 2023-11-30

Go言語とは

Googleが2009年に開発したオープンソースのプログラミング言語

Go言語の特徴

  • シンプルな構文で記述しやすい
  • 高速処理が可能
  • 複数の処理を並行できる

Go言語でできること

  • Webサーバー・Webサービスの開発
  • スマートフォンアプリの開発
  • IoT開発
  • CLIアプリケーションの開発
  • APIサーバー開発

コード例

Hello, Worldを出力するプログラム

package main

import "fmt"

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

参考

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