#!/usr/bin/perl -w
#tac.pl
#A quite useless program to show the contents of a file in reverse order
use strict;

print reverse <>;
