51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

使用cargo创建rust程序并运行

如果问我思念多重,不重的,像一座秋山的落叶。------简媜

我们按照文档在路径中打开命令行终端

|-----------|-----------------------------------------| | 1 | hljs shell cargo new world_hello |

image-20220203144619645

我们现在就可以运行了

|-------------|-----------------------------------------------| | 1 2 | hljs shell cd .\world_hello\ cargo run |

可以看到输出了Hello, world

image-20220203144724874

我们用vscode打开

可以对我们的代码进行少许更改,然后再次运行

|---------------|-----------------------------------------------------------| | 1 2 3 | hljs rust fn main() { println!("world, Hello!"); } |

image-20220203145149446

再次运行

|-----------|-----------------------------| | 1 | hljs shell cargo run |

可以看到我们的修改生效

image-20220203145218047

赞(0)
未经允许不得转载:工具盒子 » 使用cargo创建rust程序并运行