sub add_two ($$); # add_two will be defined later #### $account_balance = @credits + @debits; $biblical_metaphor = @sheep - @goats; #### @account_balances = @credits + @debits; @biblical_metaphors = @sheep - @goats; #### $length2 = scalar(@intArray); # type coercion, reports size of the array $hashTable{"third"} = @intArray; # coercion to a scalar type means the value is not the array but its length