// The classic first program, in Go.
package main

import "fmt"

func main() {
	fmt.Println("Hello, world!")
}
