Files
crush/internal/ui/diffview/testdata/TestTabs.after

16 lines
178 B
Plaintext

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