Help for this page

Select Code to Download


  1. or download this
    order: quantity color item
    quantity: /\d+/
    color: # what should this be?
    item: 'pen' | 'pencil'
    
  2. or download this
    my @colors = ('red', 'green', 'blue');
    
  3. or download this
    my @colors = ('cyan', 'magenta', 'burnt umber');
    
  4. or download this
    sub is_valid_color
    {
    ...
      }
      return undef;
    }