Garden 🌻

String::starts_with()

Does this string start with s?

Example
"foobar".starts_with("foo") //-> True
"foobar".starts_with("abc") //-> False
Source Code
public method starts_with(this: String, s: String): Bool {
  __BUILT_IN_IMPLEMENTATION
}