blob: 41ec5a79233652374a2b78806a8cc186d7d493c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package urubu
import (
"fmt"
"io"
gt "gotext"
)
func usage(argv0 string, w io.Writer) {
fmt.Fprintf(
w,
gt.Gettext("Usage: %s\n"),
argv0,
)
}
func Main() {
}
|