perlgolf hole - Rotate 180

Hole type: one-liner

Write a one-liner that takes text from standard input and rotates it 180 degrees. In other words, it would take this input:

abcd
1234567
efgh
and produce this output:
hgfe
7654321
dcba

Extra leading or trailing newlines are not allowed.

Solution