- or download this
my $confs = '...';
- or download this
my @array1 = (1, 2, 3);
my @array2 = '1, 2, 3';
- or download this
my (@array1, @array2);
my $elements_for_array = '1, 2, 3';
push @array1, 1, 2, 3; # @array1 has three elements
push @array2, $elements_for_array; # @array2 has one element
- or download this
#!/usr/bin/env perl -l
...
print 'Sorted filenames:';
print for @sorted;
- or download this
Original filenames:
MOLEC8-B040-OPT-FREQ2.gout
...
MOLEC2-B010-OPT-FREQ2.gout
MOLEC10-B002-OPT-FREQ2.gout
MOLEC1-B001-OPT-FREQ2.gout