1 2 3 4 5 6 7 8 9 10 11 12
--- name: "string/starts-with?" module: "strings" section: "Core String Operations" --- Test if a string starts with a prefix. ```sema (string/starts-with? "hello" "he") ; => #t (string/starts-with? "hello" "lo") ; => #f ```