/rustplay

Execute Rust on Rust playground from terminal

Primary LanguageRust

rustplay

Run Rust code through Rust Playground.

$ cat a.rs
fn main() {
    println!("{}", 123);
}
$ rustplay -r a.rs
123
$ rustplay -o a.rs
# => Open Playground website
$ rustplay -h
Usage: rustplay [options] FILE
NOTE: -r or -o is required

Options:
    -h, --help          print this help message
    -r, --run           compile and run given code using Rust Playground
    -o, --open          open Rust Playground with given code
    -c, --channel stable|beta|nightly
                        chose release channel which compiles code
    -m, --mode debug|release
                        chose compilation mode

I created this on a whim inspired by haya14busa/goplay.