Skip to main content

r/
repl.rs

1//! REPL support: syntax highlighting, tab completion, input validation, and history hints.
2
3mod completer;
4mod highlighter;
5mod prompt;
6mod validator;
7
8pub use completer::RCompleter;
9pub use highlighter::RHighlighter;
10pub use prompt::RPrompt;
11pub use validator::RValidator;