see if making the Term::ReadLine attr lazy helps at all...
[p5sagit/Devel-REPL.git] / lib / Devel / REPL.pm
index c174bbd..3dbf8ff 100644 (file)
@@ -13,6 +13,7 @@ use Devel::REPL::Error;
 
 has 'term' => (
   is => 'rw',
+  lazy => 1,
   default => sub { Term::ReadLine->new('Perl REPL') }
 );