sub foo ($foo, $bar) { # $foo and $bar are *parameters* # But in the sub itself, they represent the *arguments* ... } foo(42, 15); # positional arguments foo(foo => 42, bar => 15); # named arguments foo(bar => 15, foo => 42); # same thing :)