Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/usr/share/doc/perltidy/docs/
Upload File :
Current File : //proc/thread-self/root/usr/share/doc/perltidy/docs/testfile.pl

print "Help Desk -- What Editor do you use? ";
chomp($editor = <STDIN>);
if ($editor =~ /emacs/i) {
  print "Why aren't you using vi?\n";
} elsif ($editor =~ /vi/i) {
  print "Why aren't you using emacs?\n";
} else {
  print "I think that's the problem\n";
}