erudite 1.0.0

A fully-asynchronous, sandboxed, language-agnostic, test running library
Documentation
1
2
3
4
5
6
7
8
mod solution;
use solution::reverse;

fn main() {
    let line = std::io::stdin().lines().next().unwrap().unwrap();

    println!("{}", reverse(&line));
}