newts 0.3.0

A cross-language notebook terminal interface and server.
Documentation
1
2
3
4
5
6
7
8
use newts::run;

fn main() {
    if let Err(e) = run() {
        eprintln!("Error: {}", e);
        std::process::exit(1);
    }
}