use strict; sub odd_args { my($this, %$args) = @_; print $args->{x},"\n"; } odd_args(1, x => 2);