Help for this page

Select Code to Download


  1. or download this
    my $n1 = '-933';
    my $n2 = '-1039';
    
    my $dif = $n1 - $n2;
    
  2. or download this
    $VAR1 = '-933';
    $VAR1 = '-1039';
    
  3. or download this
    Argument "^\-933" isn't numeric in subtraction (-) at mycode.pl line 1
    +15.
    Argument "^\-1039" isn't numeric in subtraction (-) at mycode.pl line 
    +115.
    
  4. or download this
    my $some_string = "0,-933";
    my ($id1,$n1) = split(",",$some_string);
    
  5. or download this
    This is perl, v5.8.5 built for i386-linux-thread-multi