Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Dart solution to codeabbey challenge 30
- // import 'dart:io';
- void main() {
- // var inp = stdin.readLineSync()
- var inp = "on fare supper off shelf jeopardy about cactus";
- var t = new String.fromCharCodes(inp.runes.toList().reversed);
- print(t);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement