Help for this page

Select Code to Download


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