Files
headfirstgo/chapter4/hi/main.go~
2025-01-30 19:32:45 +03:00

15 lines
206 B
Go

package main
import (
"fmt"
"headfirstgo/headfirstgo/chapter4/greeting"
)
func main() {
greeting.Hello()
greeting.Hi()
slc := []string{"hello", "world"}
fmt.Printf("%s %T %T", slc[0], slc, true)
}