15 lines
206 B
Go
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)
|
|
}
|