Introduction to References

Learn about anonymous functions in Perl.

We'll cover the following...

Pass values to functions

Perl usually does what we expect, even if what we expect is subtle. Consider what happens when we pass values to functions:

Press + to interact
sub reverse_greeting {
my $name = reverse shift;
return "Hello, $name!";
}
my $name = 'Chuck';
say reverse_greeting($name);
say $name;

Outside the function, $name contains Chuck, even though the value ...