17 lines
178 B
Go
17 lines
178 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"DanceLessonsCoach/pkg/greet"
|
|
)
|
|
|
|
func main() {
|
|
name := ""
|
|
if len(os.Args) > 1 {
|
|
name = os.Args[1]
|
|
}
|
|
|
|
fmt.Println(greet.Greet(name))
|
|
} |