– @donaldpipowitchProbably even more important than its features is the ecosystem and the community behind the language. Rust really shines here - especially for people who love the web.
use std::io;
fn main() {
println!("Please input the temperature in Celsius.");
let mut temperature = String::new();
io::stdin().read_line(&mut temperature)
.expect("Failed to read line");
let temperature: f32 = temperature.trim().parse()
.expect("Please type a number!");
println!("{}", (temperature * 9.0) / 5.0 + 32.0);
}
– @ObliviousJDI love Rust because it reduces bugs by targeting it's biggest source... me.
cargo init
npm init
curl https://sh.rustup.rs -sSf | sh
rustup self uninstall