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