main.go 156 B

1234567891011
  1. package main
  2. import "fmt"
  3. func main() {
  4. fmt.Println(hello("Quintor"));
  5. }
  6. func hello(someone string) string {
  7. return fmt.Sprintf("Hello %s", someone);
  8. }