my @people = People->search( position=>'manager', last_name=>'Smith' ); #### my @people = People->search('position', 'manager', 'last_name', 'Smith'); # or my @people = People->search({ position=>'manager', last_name=>'Smith' }); #### $x->text('hello world', { font=>'arial', size=>'12px' });