Undefined Title

Undefined Title

Go言語 コマンドライン引数

package main

import "fmt"
import "os"

func main() {
  args := os.Args
  fmt.Printf("%d\n", len(args))

  for i := 0; i < len(args); i++ {
    fmt.Printf("%s\n", args[i])
  }
}

パッケージ経由で取得するのね。Pythonみたい。