// Package hello // // This package provides a simple "hello, world" program. package main import "fmt" func main() { fmt.Println("Hello world!") }