X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FEval-WithLexicals.git;a=blobdiff_plain;f=bin%2Ftinyrepl;fp=bin%2Ftinyrepl;h=8530caf7f5535103b4c69ee397bc88f34e5afea6;hp=f9087ea034fabec235070a4d1311f7bd621e6bd6;hb=ed9faa559a0618007bf226651f2d0e5a75f0b577;hpb=877d3781898a3daf699dd74b4b95ef7564b8f58b diff --git a/bin/tinyrepl b/bin/tinyrepl index f9087ea..8530caf 100755 --- a/bin/tinyrepl +++ b/bin/tinyrepl @@ -31,3 +31,53 @@ while (1) { } or @ret = ("Error!", $@); print Dumper @ret; } + +__END__ + +=head1 NAME + +tinyrepl - Tiny REPL + +=head1 SYNOPSIS + + $ tinyrepl + re.pl$ "s" x 5 + "sssss" + re.pl$ exit + + $ tinyrepl --plugin HintPersistence + +=head1 DESCRIPTION + +tinyrepl is a minimal pure-Perl REPL. It is just a small wrapper +around L. + +=head1 OPTIONS + +=over 4 + +=item C<--plugin=> + +Loads a plugin into the REPL. See L. + +=back + +=head1 AUTHOR + +Matt S. Trout + +=head1 CONTRIBUTORS + +David Leadbeater + +=head1 COPYRIGHT + +Copyright (c) 2012 the Eval::WithLexicals L and L +as listed above. + +=head1 LICENSE + +This library is free software and may be distributed under the same terms +as perl itself. + +=cut