main.go
 1  package main
 2  
 3  import (
 4  	"fmt"
 5  	"os"
 6  )
 7  
 8  func main() {
 9  	fmt.Println(os.Args[0])
10  }