Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/tutorials/lang/QuickOverview.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,14 @@ nix-repl> { a.b.c = 1; }
{ a = { ... }; }
```

在上面的例子中,我们输入了一个匿名集合,而这个匿名集合包含 `a` 集合。
在上面的例子中,我们输入了一个匿名集合 `{ a.b.c = 1; }`,而这个匿名集合包含的属
性 `a` 也是集合,或者说它包含一个 `a` 集合。

<!-- prettier-ignore -->
::: note 匿名集合
::: note 集合
匿名集合即没有分配名称的集合,与之对立的是命名集合,例如 `foo = { bar };`。

提示:与集合有关的说明被安排在后面,若读者在这里感到理解困难,可以提前参考后文的“属性集”与“属性访问”部分。
<!-- prettier-ignore -->
:::

Expand Down