string builtin methods



string_builtin_methods
Smart pascal source code
var str: String; WriteLn('empty'); WriteLn(str.Low); WriteLn(str.high); WriteLn(str.Length); str := 'a'; WriteLn('a'); WriteLn(str.Low()); WriteLn(str.high()); WriteLn(str.Length()); {<<< RESULT - CONSOLE LOG >>> ----------------------------- Errors >>>> Hint: "high" does not match case of declaration ("High") [line: 5, column: 13] Hint: "length" does not match case of declaration ("Length") [line: 12, column: 13] Result >>>> empty 1 0 0 a 1 1 1 ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}