CPU: Perl, Fall 2005 Perl, Week 3: More Arrays, Context, Subroutines, Lexical Variables #47

Lexical Variables

sub sum_of_three_numbers {
  my ( $a, $b, $c );
  ( $a, $b, $c ) = @_;
  $a + $b + $c;
}
# outside the sub, we can't get to @_, $a, $b, or $c
Copyright © 2005 Ian Langworth