Dear perl monks I'm currently having a brain fart for some reason I can't write a simple subroutine that concatenate the information inside of it something like
$A= concat( 'ab', 'cd',...)
print $A;
sub concat{?????}
The program output should be: abcd.....