24
The difference between an instance variable and a static variable.
(programming.dev)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Perl actually uses
my
andour
to do scope.my @foo;
our $bar;