8 lines
102 B
Perl
8 lines
102 B
Perl
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
my @a = qw(hello world good bye);
|
|
|
|
print "[$_]\n" foreach @a;
|