Skip to content

Commit

Permalink
更新import
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhongjia committed Dec 11, 2023
1 parent c318e4d commit 561282a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion learn/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,15 @@ _很简单,不是吗?_

## 简单说明

以上程序中,我们先通过 `@import` 这个内置函数(在zig中有很多的内置函数,它们都以`@`开头,并且遵循[小驼峰命名法](#))引入了 zig 的标准库。
以上程序中,我们先通过 `@import` 这个内置函数(在zig中有很多的内置函数,它们都以`@`开头,并且遵循 [小驼峰命名法](#))引入了 zig 的标准库。

::: info 🅿️ 提示

`@import` 函数查找对应名称的模块或者 zig 源文件(源文件带后缀)并导入它。

zig 始终支持导入三个模块,`std``builtin``root`,分别代表标准库、构建目标相关信息、根文件(编译时的 root 文件,通常为 `src/main.zig`)。

:::

通过在 `main` 函数(程序默认是从此处开始执行,这是规定)中使用在标准库 **debug** 包中定义的 `print` 函数来输出语句 _Hello, World!_

Expand Down

0 comments on commit 561282a

Please sign in to comment.