Results 1 to 4 of 4
Does anyone know of a program that would convert everything typed into it, into its backwards form?...
- 09-26-2005 #1Banned
- Join Date
- May 2005
- Posts
- 75
Typing Backwards Program
Does anyone know of a program that would convert everything typed into it, into its backwards form?
- 09-26-2005 #2Code:
#!/usr/bin/perl print "Enter Anything: "; chomp($string = <STDIN>); $string = reverse $string; print "$string\n";
There you go.DISTRO=Arch
Registered Linux User #388732
- 09-26-2005 #3Banned
- Join Date
- May 2005
- Posts
- 75
Thank you kind sir.
Originally Posted by Cabhan
- 09-26-2005 #4Linux Enthusiast
- Join Date
- Aug 2005
- Posts
- 542
What would the point be?
To kill time?


Reply With Quote
