Signature: length(s: string) -> int
Description: Returns the byte length of a string. Total — never fails.
Parameters
- s (string): The string to measure
Returns: int
Example
let len = length("hello") // 5
Signature: length(s: string) -> int
Description: Returns the byte length of a string. Total — never fails.
Returns: int
let len = length("hello") // 5