Help for this page
sub arrayInsertAfterPosition { ... print join(', ', @res) . "\n"; @res = arrayInsertAfterPosition (\@tab, 5, 'Test'); print join(', ', @res) . "\n";
Test, A, B, C, D, E A, Test, B, C, D, E ... A, B, C, D, Test, E A, B, C, D, E, Test A, B, C, D, E, Test