programming-examples/perl/Statement/Setting elements in a list to equal the corresponding elements of another list with three different names.pl
2019-11-15 12:59:38 +01:00

6 lines
85 B
Perl

#!/usr/bin/perl -w
($one, $two, $three) = (1..3);
print "$one $two $three\n";