Help for this page

Select Code to Download


  1. or download this
    Name "main::Simple_Arr" used only once: possible typo at VARSTRUCTOR.p
    +l line 15.
    Name "main::Simple_Var" used only once: possible typo at VARSTRUCTOR.p
    +l line 14.
    ...
    %hash2
    key1=value1
    key2=value2
    
  2. or download this
    syntax error at VARSTRUCTOR.pl line 12, near "$hash2{"
    Execution of VARSTRUCTOR.pl aborted due to compilation errors.
    
  3. or download this
    my %hash1=("key1"=>"value1","key2"=>"value2");
    my %hash2 = ();
    ...
    $hash2{"key2"}="value2";
    my $Simple_Var = 'simple';
    my @Simple_Arr = ('simple1','simple2');
    
  4. or download this
    Use of uninitialized value in pattern match (m//) at VARSTRUCTOR.pl li
    +ne 67.
    Use of uninitialized value in concatenation (.) or string at VARSTRUCT
    +OR.pl line 116.
    $Simple_Var = simple
    @Simple_Arr = simple1 simple2