Syntax

Direct import

import "fmt"
import "math"

Grouped import

import (
    "fmt"
    "math"
)