Files
2020-08-17 17:42:44 -04:00

17 lines
243 B
Go

package main
import (
"fmt"
"strings"
)
func main() {
s := "prefix this should be all you see"
trimmed := strings.TrimPrefix(s, "prefix")
if trimmed != "this should be all you see" {
fmt.Println("oh noes")
}
fmt.Println(trimmed)
}