Help for this page

Select Code to Download


  1. or download this
    my $this_appcode = $AppCode{$ID};
    $TotCst{ $this_appcode }
    
  2. or download this
    my $this_appcode = $AppCode{$ID};
    my $this_csttype = $CstType{$ID};
    $TotCst{$this_appcode}->{$this_csttype} += $InvAmnt{$ID};
    
  3. or download this
    $object->method(@arguments);
    Class->method(@arguments);
    
  4. or download this
    # Here's an array...
    my @array = ('foo', 'bar', 'baz');
    ...
    # But we want to access it via the reference (pointer)
    # then we need the arrow:
    warn $array_ref->[2];
    
  5. or download this
    $TotCst{$this_appcode}{$this_csttype} += $InvAmnt{$ID};