Help for this page

Select Code to Download


  1. or download this
    package Tie::Input::Insertable;
    
    ...
    }
    
    1;
    
  2. or download this
    use Tie::Input::Insertable;
    tie *FOO, 'TIE::Input::Insertable', *STDIN;
    ...
      print FOO "Hello, world\n" if /foo/;
      print $_;
    }