Loose Typing System
- don't have to specify what variables can hold
- DWIM
$a = 123; $b = 'abc'; print $a . $b;
- if you use it like a number, it's a number
$a = 'a'; $a++; print $a;
- type system cares more about scalars and lists and hashes anyway
Slide 32 of 47