Help for this page

Select Code to Download


  1. or download this
    # Simple array
    my @array = qw(test1 test2 test3 test4 test5);
    # Printing one-liner 
    print join ("\n", @array), "\n";