Help for this page

Select Code to Download


  1. or download this
    print ( qw(a b c) x 3 );
    
  2. or download this
    @l = qw(a b c);
    print ( (@l) x 3);