Search Apps Documentation Source Content File Folder Download Copy Actions Download

helloworld.gno

0.13 Kb ยท 9 lines
1package helloworld
2
3func Hello() string {
4	return "Hello, World!"
5}
6
7func HelloTo(name string) string {
8	return "Hello, " + name + "!"
9}