Files
headfirstgo/chapter4/hi/main.go
2025-01-30 12:04:39 +03:00

15 lines
208 B
Go

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