3 lines
62 B
Raku
3 lines
62 B
Raku
@a = qw(This is a test);
|
|
@b = map/^(\w{4})/, @a;
|
|
print "@b"; |
@a = qw(This is a test);
|
|
@b = map/^(\w{4})/, @a;
|
|
print "@b"; |