Try Perl6 Beta
Strings and Things

Here are some other things you can do with strings

  • "hello " ~ "world"
  • "hello world".chars
  • "hello world".uc
  • "HELLO WORLD".lc
  • "hello world".wordcase
  • "hello world".flip
Terminal