about summary refs log tree commit diff stats
path: root/main.go
blob: cfa28537564762e1b9bc6b9673f811b771eb68bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// package hello says hello.
package hello

import (
	"fmt"
)

// Hello says hello.
func Hello() {
	fmt.Println("Hello")
}