Signature: drop(s: string, n: int) -> string

Description: Returns s without its first n bytes. Clamps; never fails.

Parameters

Returns: string

Example

drop("hello", 3)  // "lo"