Files
letsGO/types/cmd/main.go
T
2026-08-31 14:57:35 -04:00

12 lines
101 B
Go

package main
import (
"fmt"
"hello"
"os"
)
func main() {
fmt.Println(hello.Say(os.Args[1:]))
}