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

import (
	"fmt"
)

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