User tadmc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T13:39:32Zhttp://stackoverflow.com/feeds/user/41240http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/323020#3230207Answer by tadmc for What should I teach a beginning Perl programmer?tadmc2008-11-27T05:44:57Z2008-11-27T05:44:57Z<p>Perl has two things that are likely to be foreign even to experienced programmers, so those should perhaps be mentioned early on so they don't run away screaming.</p>
<p>Context: Nearly every function in Perl has 2 behaviors. When called in a "scalar context" and it does one thing, when called in a "list context" it does something else instead. This may seem weird and strange (and it is, in machine languages) but is simply the natural language concept of "singular" and "plural" applied to a programming language.</p>
<p>Variables: Perl has 2 completely different and separate systems of variables. Lexical variables (my) and package variables (our). Lexical variables are "normal" if you've used most any programming language. Package variables (i.e. dynamic variables) are strange, unless you've used something like Lisp. "Always prefer lexical variables over package variables, except when you can't."</p>