Help for this page

Select Code to Download


  1. or download this
        #...call to function
        &SomeFunction($a, $b, $c);
    ...
        @args = ("$program $a $b $c");
        system(@args) == 0
            or die "system @args failed: $?";
    
  2. or download this
        #...call to function
        &SomeFunction($a, $b, '$c');
    ...
        @args = ("$program $a $b '$c'");
        system(@args) == 0
            or die "system @args failed: $?";