mirror of
https://github.com/charmbracelet/crush.git
synced 2026-05-30 18:47:33 +00:00
16 lines
193 B
Plaintext
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
|
|
}
|