canmove, Confirmed users
345
edits
Line 74: | Line 74: | ||
** That Perl errors are in $@ but system errors are in $!, and when to use which one. | ** That Perl errors are in $@ but system errors are in $!, and when to use which one. | ||
** That Perl doesn't really have a class system, it just has a package system with @ISA or "use base," "bless," and SUPER::. | ** That Perl doesn't really have a class system, it just has a package system with @ISA or "use base," "bless," and SUPER::. | ||
** That "my ($var) = @_" will get you the first item of the array, but "my $var = @_" will get you a number. | |||
== Perl6 == | == Perl6 == |