Rust hello world !
Posted wensongyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rust hello world !相关的知识,希望对你有一定的参考价值。
特点: 安全,速度,并发
文件:hello_world.rs
代码:
1 fn main() { 2 println!("hello world!"); 3 }
执行:rustc hello_world.rs
执行:./hello_world
结果:屏幕上就出现字符串:hello world
以上是关于Rust hello world !的主要内容,如果未能解决你的问题,请参考以下文章