Help for this page

Select Code to Download


  1. or download this
    sub _print {
      print $msg, @_;
    ...
    
    _print("hello");
    _print("world");
    
  2. or download this
    use IO::Tee ();
    
    ...
    
    print("hello");
    print("world");