Importing

import "fmt"
import "math/rand"

#Same as

import (
  "fmt"        // gives fmt.Println
  "math/rand"  // gives rand.Intn
)

See: Importing

Comments