Get returns the nth argument, or else a blank string
(n int)
| 8 | type Args interface { |
| 9 | // Get returns the nth argument, or else a blank string |
| 10 | Get(n int) string |
| 11 | // First returns the first argument, or else a blank string |
| 12 | First() string |
| 13 | // Tail returns the rest of the arguments (not the first one) |
no outgoing calls