Help for this page

Select Code to Download


  1. or download this
    Package main:
    
  2. or download this
    my $foo = HeckIfIKnow::new(
      -opt1 => '3456',
      -opt2 => '1234'
    );
    
  3. or download this
    my $foo = new HeckIfIKnow(
      -opt1 => '3456',
      -opt2 => '1234'
    );
    
  4. or download this
    $VAR1 = bless( {
                     '3456' => '-opt2',
                     '1234' => undef
                   }, '-opt1' );
    
  5. or download this
    $VAR1 = bless( {
                     '-opt2' => '1234',
                     '-opt1' => '3456'
                   }, 'HeckIfIKnow' );