Lindenii Project Forge
/template_funcs.go (raw)
package main import "strings" func first_line(s string) string { before, _, _ := strings.Cut(s, "\n") return before }