puts, pp, dump

kz> "abc" puts;
  > 
abc

kz> "abc" pp;
  > 
"abc"

kz> "abc" dump;
  > 
"abc" {
*   this = "abc";
    `+` = #fun(String.`+`);
    `<=` = #fun(String.`<=`);
    `<` = #fun(String.`<`);
    `==` = #fun(String.`==`);
    `>=` = #fun(String.`>=`);
    `>` = #fun(String.`>`);
    `^=` = #fun(String.replace);
    `~=` = #fun(String.match);
    indexOf = #fun(String.indexOf);
    lastIndexOf = #fun(String.lastIndexOf);
    length = #fun(String.length);
    match = #fun(String.match);
    parseBoolean = #fun(String.parseBoolean);
    parseDouble = #fun(String.parseDouble);
    parseFloat = #fun(String.parseFloat);
    parseInt = #fun(String.parseInt);
    parseLong = #fun(String.parseLong);
    parseRegex = #fun(String.parseRegex);
    replace = #fun(String.replace);
    toLowerCase = #fun(String.toLowerCase);
    toUpperCase = #fun(String.toUpperCase);
    trim = #fun(String.trim);
}