Help for this page

Select Code to Download


  1. or download this
    use 5.010;
    use strict;
    ...
    
    @xxx = (9,9,9);
    say "@yyy";   # says "9 9 9"
    
  2. or download this
    use 5.010;
    use strict;
    ...
    
    @xxx = (9,9,9);
    say "@yyy";    # says nothing
    
  3. or download this
    *answers_comments = one_param("answers","comments");
    
  4. or download this
    package ...;
    sub answers_comments {
      ...;
    }