Help for this page

Select Code to Download


  1. or download this
      map {/dothis/} @variable;
      grep {/more stuff/} @more;
    
  2. or download this
      map(sub {/dothis/}, @variable);
      grep(sub {/more stuff/}, @more);
    
  3. or download this
      print A "hello";
      print $somevar, "can be seperated like this";
    
  4. or download this
      print STDOUT $somevar, "can be seperated like this";