z_example_avatar_test.goo 137 B

123456789
  1. package rest_test
  2. import "fmt"
  3. func ExampleHello() {
  4. message := rest.Hello("Alice")
  5. fmt.Println(message)
  6. // Output: Hello, Alice!
  7. }