-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install instructions #3
Comments
Just say |
I'm a bit of a rust newb, so perhaps this isn't necessary, but adding that to the docs would have been helpful for me. It wasn't obvious to me how I should get started using it. This is an awesome tool, BTW! Being able to quickly test snippets makes things much easier. And because rust code blocks are expressions I can do things like: runner -e "{
let good_result: Result<i32, i32> = Ok(10);
let bad_result: Result<i32, i32> = Err(10);
(good_result.map(|i| i + 1), bad_result.map(|i| i - 1))
}" As someone who uses the python REPL often, this brings me a lot closer to that. Thank you for creating this tool. |
I concur with @dwaltrip. the Readme should state right up front how to install. I had no idea either |
Is there a rustup install option or the binary need to built and copied to /bin?
The text was updated successfully, but these errors were encountered: