User tadmc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:39:32Z http://stackoverflow.com/feeds/user/41240 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/323020#323020 7 Answer by tadmc for What should I teach a beginning Perl programmer? tadmc 2008-11-27T05:44:57Z 2008-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>