mirror of
https://github.com/charmbracelet/crush.git
synced 2026-05-30 18:47:33 +00:00
14 lines
139 B
Plaintext
14 lines
139 B
Plaintext
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(getContent())
|
|
}
|
|
|
|
func getContent() string {
|
|
return "Hello, world!"
|
|
}
|