box-o-sand/whothis/main.go
2016-07-10 21:29:23 -04:00

13 lines
161 B
Go

package main
import (
"fmt"
"os"
"path/filepath"
)
func main() {
fmt.Printf("args: %#v\n", os.Args)
fmt.Printf("prog: %s\n", filepath.Base(os.Args[0]))
}