Help for this page

Select Code to Download


  1. or download this
    open (OUTPUTFILE, '>', $position_output_path) or die "Could not open .
    +..";
    
  2. or download this
    my $var;
    my @array = ('a', 1.1, \$var);
    ...
    print @array;
    print "\n@array";
    print "\n", join "\n", @array;
    
  3. or download this
    a1.1SCALAR(0x182f68c)
    a 1.1 SCALAR(0x182f68c)
    a
    1.1
    SCALAR(0x182f68c)