Type: string - Paramecium13/LSN GitHub Wiki

The string type represents text encoded in unicode.

Operations

  • Concatenation: Concatenates two strings. Uses the '+' operator.
  • Multiplication: Concatenates a string with itself multiple times. It operates on a string and a non-negative integer. It uses the '*' symbol.

Methods

  • Length: Returns the length of the string.
  • ToLower: Returns a new string that is this string in all lowercase.