rust-playground
rust-playground copied to clipboard
The Rust Playground
I would like to reuse code saved in one playground in another, different playground without having to copy-paste the contents of the original, or having to publish it. This could...
This is a feature request. By program I mean a single code string, usually containing `fn main` or `#[test]\nfn...`. I see how `redux` is used on the session and local...
Spawned from #184. We could link to the docs, repo, crates.io pages, show the versions, a one-line description? 
I write the following in Rust playground: ``` fn main() { let hej = "abc\rdef"; println!("{}", hej); } ``` Actual output: ``` abcdef ``` Expected output: ``` def ```
[The Rust book](https://doc.rust-lang.org/book/second-edition/) and other guides use the playground to execute code snippets and display the results inline. This is an awesome way to increase interactivity, especially when the examples...
I am trying to run rust playground locally : https://github.com/integer32llc/rust-playground However , when i follow the instruction, the application doesnt start on 127.0.0.1:5000. ``` Compiling octocrab v0.16.0 Compiling ui v0.1.0...
this will run is test by default ``` /* #[cfg(test)] mod tests { use crate::{Vignette, VignettePart, VignetteSet}; #[test] fn test1(){ assert_eq!(1, 1) } } */ ``` this with run as...
Sometimes we have to style the code accordingly with other practices besides the default `rustfmt.toml`. If we could upload a config file `rustfmt.toml` and then format the code based on...
Steps to reproduce: 1. Visit https://www.rust-lang.org/ 2. Click "Playground" link 3. Type Alt+Left Arrow on keyboard Expected results: Browser navigates back to https://www.rust-lang.org/. Actual results: Nothing happens. This is on...