Key differences from Perl 6
- Binding only, no assignment
my $abc := 3; # correct my $abc = 3; # incorrect
- Function calls require parens
- No indirect method syntax
- No automatic array/list flattening
- Few predefined functions
print() say() plan() ok() isa()