reverse method

String reverse()

Returns a string with reversed order of characters.

Example:

    print("hello".reverse());
    => olleh

Implementation

String reverse() => Transform.reverse(this);