Newer
Older
01_hello / package / unused.go
package main

import (
	"fmt"
	_ "os" // unused import
)

func main() {
	fmt.Println("hello")
}