realm.gno

0.23 Kb ยท 13 lines
 1package runtime
 2
 3var greeting string
 4
 5func init() {
 6	greeting = "Hello"
 7}
 8
 9// SayHello says hello to the specified name, using
10// the saved greeting
11func SayHello(cur realm, name string) string {
12	return greeting + " " + name + "!"
13}