runner
runner copied to clipboard
add support for input from terminal stdin
Is it possible to add support for input from terminal stdin like below?
runner --add time <<'EOF'
use time;
fn main(){
println!("I'm from stdin! {}", time::now().rfc822z());
}
EOF
That way it's very straight forward to experiment in the air without any file storage.