pomprt 0.6.1

A small yet feature-rich readline prompt
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// pomprt, a line editor prompt library
// Copyright (c) 2023 rini
//
// SPDX-License-Identifier: Apache-2.0

fn main() -> Result<(), pomprt::Error> {
    for line in pomprt::new("><> ") {
        println!("{line}");
    }

    Ok(())
}