Is it possible to add support for input from terminal stdin like below? ```sh 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.