erudite 1.0.0

A fully-asynchronous, sandboxed, language-agnostic, test running library
Documentation
1
2
3
4
5
fn main() {
    let line = std::io::stdin().lines().next().unwrap().unwrap();
    eprintln!("length of line: {}", line.len());
    println!("{}", line.chars().rev().collect::<String>());
}