Guest User

Untitled

a guest
Nov 20th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #!/usr/bin/env perl
  2. # A modern perl interactive shell
  3.  
  4. #`perl -MCPAN -e 'install Devel::REPL'`
  5. use Devel::REPL; # or require Devel::REPL
  6.  
  7. my $repl = Devel::REPL->new;
  8. $repl->load_plugin($_) for qw(History LexEnv);
  9. $repl->run
Add Comment
Please, Sign In to add comment