ADAPT-Chase's picture
Add files using upload-large-folder tool
8ab4ccd verified
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(getContent())
}
func getContent() string {
content := strings.ToUpper("Hello, World!")
return content
}