TestTabs.after 178 B

123456789101112131415
  1. package main
  2. import (
  3. "fmt"
  4. "strings"
  5. )
  6. func main() {
  7. fmt.Println(getContent())
  8. }
  9. func getContent() string {
  10. content := strings.ToUpper("Hello, World!")
  11. return content
  12. }