Multi Paradigm Smoothly combine coding styles: Object-Oriented: class Circle encapsulates data and behavior. Functional: built-ins like .map and operators like ». and [+] . Declarative: ... infers sequences, such as the powers of two. Procedural: the overall code flow is straightforward. ...natural syntax & semantics class Circle { has $.radius; method area { π * $.radius² } } my @radii = 1,2,4...

