用rust写一个helloworld
时间: 2023-09-02 12:15:01 浏览: 149
Java写Hello world
好的,以下是用 Rust 语言编写的 Hello World 程序:
```rust
fn main() {
println!("Hello, world!");
}
```
你可以将以上代码复制到任何 Rust 编辑器中运行,也可以将代码保存到一个后缀名为 `.rs` 的文件中,然后使用 Rust 编译器编译并运行它。
阅读全文
Java写Hello world