The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Term::ReadLine::Caroline - Term::ReadLine style wrapper for Caroline

SYNOPSIS

    use Term::ReadLine;

    my $t = Term::ReadLine->new('program name');
    while (defined($_ = $t->readline('prompt> '))) {
        ...
        $t->addhistory($_) if /\S/;
    }

DESCRIPTION

Term::ReadLine::Caroline provides Term::ReadLine interface using Caroline.

You can use Caroline with this wrapper module, but I *recommend* to use Caroline directly.

AUTHOR

Tokuhiro Matsuno <tokuhirom@gmail.com>

SEE ALSO

This module provides interface for Term::ReadLine, based on Caroline.

LICENSE

Copyright (C) Tokuhiro Matsuno

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.