Perl

From Freephile Wiki
Revision as of 23:55, 8 May 2008 by Freephile (talk | contribs) (New page: <source lang="perl"> @a=(Lbzjoftt, Inqbujfodf, Hvcsjt); $b="Lbssz Wbmm"; $b =~ y/b-z/a-z/ ; $c = " Tif ". @a . " hsfbu wj" ."suvft pg b qsphsbnnfs" . ":\n";$c =~ y/b-y/a-z/; print "\n\n...)

(diff) ← Older revision | Approved revision (diff) | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
@a=(Lbzjoftt, Inqbujfodf, 
Hvcsjt); $b="Lbssz Wbmm";
$b =~ y/b-z/a-z/ ; $c = 
" Tif ". @a . " hsfbu wj" 
."suvft pg b qsphsbnnfs"
. ":\n";$c =~ y/b-y/a-z/;
print "\n\n$c ";for($i=0;
$i<@a; $i++) { $a[$i] =~ 
y/b-y/a-z/; if($a[$i]eq$a
[-1]) {print "and $a[$i]."
;}else{ print "$a[$i], ";
}}print "\n\t\t--$b\n\n";
#!/usr/bin/perl

@a=(Lbzjoftt, Inqbujfodf, Hvcsjt);
$b="Lbssz Wbmm";
$b =~ y/b-z/a-z/ ;
$c = " Tif ". @a . " hsfbu wj" ."suvft pg b qsphsbnnfs". ":\n";
$c =~ y/b-y/a-z/;
print "\n\n$c ";
for($i=0; $i<@a; $i++) {
  $a[$i] =~ y/b-y/a-z/;
  if($a[$i]eq$a[-1]) {
    print "and $a[$i].";
  }else{
    print "$a[$i], ";
  }
}
print "\n\t\t--$b\n\n";
The 3 great virtues of a programmer:
Laziness, Impatience, and Hubris.
--Larry Wall