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