1package fromage
2
3import "fmt"
4
5func Hello() string {
6	return fmt.Sprint("Fromage!")
7}
8