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