Files

16 lines
193 B
Plaintext

package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(getContent())
}
func getContent() string {
content := strings.ToUpper("Hello, World!")
return content
}