美文网首页
rust hello world

rust hello world

作者: 张中华 | 来源:发表于2024-03-22 21:57 被阅读0次

    安装

    地址:
    https://www.rust-lang.org/zh-CN/tools/install

    检验安装成功命令:
    rustc --version

    新建一个文件hellowrold.rs

    fn main() {
        println!("hello world");
    }
    

    执行命令

    rustc helloworld.rs
    此时会生产两个文件.exe和.pdb,像极了自己在写.net的时候,build之后,也有.pdb和.exe。可能因为在windows下开发的缘故吧,一个可执行文件,和一个调试文件,如此相似。

    执行程序,打印出hello wolrd

    helloworld.exe

    相关文章

      网友评论

          本文标题:rust hello world

          本文链接:https://www.haomeiwen.com/subject/koghcdtx.html