From f56b20129f27e28bfebdec8e2f639038b6d72a37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=A4=E7=8B=90=E4=B8=80=E5=86=B2?= <43949039+anonymousGiga@users.noreply.github.com> Date: Wed, 17 May 2023 10:54:13 +0800 Subject: [PATCH] Update chapter_2.md --- src/chapter_2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chapter_2.md b/src/chapter_2.md index adfab2f..bff969b 100644 --- a/src/chapter_2.md +++ b/src/chapter_2.md @@ -145,7 +145,7 @@ cargo new hello_world ``` 创建后,可以看到整个目录的结构如下: -![目录结构](../assets/62.PNG) +![目录结构](../assets/62.png) 其中Cargo.toml是项目的配置文件,src为源代码目录,main.rs为主程序文件。 ### 2.3.2 编写程序