Code activity monitor
We're still learning Rust. Leave your learnings here.
Rust tools installed via cargo install need to be available. Ex: cargo-fmt
Cargo compiles all tests in /tests as a separate crate. This guarantees that they're integration tests, because they must declare
extern crate coded;
use coded::helpers;The test runner captures stdout. Disable this behavior like
cargo test -- --nocapture
let f = |x: Vec<i32>| -> Vec<i32> {
println!(x);
x // return x
}cb="cargo build" and alias ct="cargo test -- --nocapture"
Chill with others learning rust in IRC
Web client that looks decent: https://kiwiirc.com/client Network: irc.mozilla.org Channel: #rust-beginners