What I Learned at YAPC
diag "why science";
sub tony_no {
my $arg = shift;
if ( $arg eq 'no tony' ) { return 'tony stahp' }
else { return 'jarvis halp' }
}
is (tony_no( 'no tony' ) , 'tony stahp' , 'go to sleep stark' );
*bows*
sub tony_no {
my $arg = shift;
if ( $arg eq 'no tony' ) { return 'tony stahp' }
else { return 'jarvis halp' }
}
is (tony_no( 'no tony' ) , 'tony stahp' , 'go to sleep stark' );
*bows*
no subject