Tag Archives: context based evaluation

Perl – Initial Values and Context Based Evaluation

It’s important to remember that in Perl all scalar variables have an initial value of the null string, “”. You do not need to define a value for scalar variables unless you are using “strict” mode. Knowing this, what do … Continue reading

Posted in Perl, Programming Languages, Technology | Tagged , , , , , , , | Leave a comment

Scalar and List Contexts in Perl

One of the most important concepts to understand in Perl programming is that of evaluation based on context. In Perl, an operation such as an assignment or function call can give two different results based on the context of the … Continue reading

Posted in Perl, Programming Languages | Tagged , , , , , , , , , , , | Leave a comment