Help for this page

Select Code to Download


  1. or download this
    @arr = (
      {person => 'PersonA', place => 'PlaceA',}
      {person => 'PersonB', place => 'PlaceB',}
    );
    
  2. or download this
    CREATE TABLE tbl (
      person, org
    )
    
  3. or download this
    @arr = (
      {
    ...
        works_for => 'PersonA', 
      }
    );
    
  4. or download this
    @arr = (
      {
    ...
        has_assistant => '',
      }
    );
    
  5. or download this
    CREATE TABLE tbl (
      person, org, works_for, has_assistant
    )