Rust有便捷的在线工具供开发者使用。如果在开发的过程中想做测试,以下网站将是很好的选择:
· 官方运行器:https://play.rust-lang.org;
· 菜鸟教程运行器:https://c.runoob.com/rust。
// hello.rs fn main() { println!("Hello Rust!"); }
程序输出为:
Hello, Rust!