Sophie

Sophie

distrib > Fedora > 13 > x86_64 > by-pkgid > b85a231f3c8113eb2cdfc060db66cb64 > files > 11

perltidy-20090616-3.fc13.noarch.rpm

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";
}