12 lines
101 B
Go
12 lines
101 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"hello"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(hello.Say(os.Args[1:]))
|
|
}
|