code-executor 1.1.0

A code runner library for online judge system
Documentation
1
2
3
4
5
6
use std::io::stdin;

fn main() {
    let s = stdin().lines().next().unwrap().unwrap();
    println!("{s}");
}