4 lines
62 B
Perl
4 lines
62 B
Perl
|
@array = ("Hello ", "there.\n");
|
||
|
for (@array) {
|
||
|
print;
|
||
|
}
|