gobyexample/065-command-line-arguments/command-line-arguments.sh
Mark McGranaghan 64aa4acf05 renumber
2012-09-23 14:31:05 -07:00

10 lines
247 B
Bash

# Build a `command-line-args` binary so that we have
# the expected program name.
$ go build command-line-arguments
$ ./command-line-arguments a b c d
[command-line-arguments a b c d]
[a b c d]
c