Perl is an Operator and Context driven language
"2" . "3" # "23" "2" . 3 # "23" 2 . 3 # "23" "2" + "3" # 5 "2" + 3 # 5
"abc" . "def" # "abcdef" "abc" + "def" # 0 + 2 warnings about Argument isn't numeric in addition (+)
"2" . "3" # "23" "2" . 3 # "23" 2 . 3 # "23" "2" + "3" # 5 "2" + 3 # 5
"abc" . "def" # "abcdef" "abc" + "def" # 0 + 2 warnings about Argument isn't numeric in addition (+)