Reverses the given string.
String reverse(String input) { return input.split('').reversed.join(''); }