Perl 9 has now reverse method operators!
You don't have to call $object.method or $object->method any more! You can also do method<-$object instead! This leads to a new level of flexibility and programming experience!
#!/usr/bin/perl9
your $result = 1->add(1) / mult(2)<-2;
say<-$result; # Will print 0.5