TestTabs.after

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