diff options
Diffstat (limited to 'doc/docs/zh/doc/README.md')
-rwxr-xr-x | doc/docs/zh/doc/README.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/docs/zh/doc/README.md b/doc/docs/zh/doc/README.md index 3ae6af7..472ac15 100755 --- a/doc/docs/zh/doc/README.md +++ b/doc/docs/zh/doc/README.md | |||
@@ -685,6 +685,8 @@ do | |||
685 | import insert, concat from table | 685 | import insert, concat from table |
686 | -- 当给 insert, concat 变量赋值时,编译器会报告错误 | 686 | -- 当给 insert, concat 变量赋值时,编译器会报告错误 |
687 | import C, Ct, Cmt from require "lpeg" | 687 | import C, Ct, Cmt from require "lpeg" |
688 | -- 快捷写法引入模块的子项 | ||
689 | import x, y, z from 'mymodule' | ||
688 | 690 | ||
689 | -- 快捷地导入一个模块 | 691 | -- 快捷地导入一个模块 |
690 | do | 692 | do |
@@ -706,6 +708,8 @@ do | |||
706 | import insert, concat from table | 708 | import insert, concat from table |
707 | -- 当给 insert, concat 变量赋值时,编译器会报告错误 | 709 | -- 当给 insert, concat 变量赋值时,编译器会报告错误 |
708 | import C, Ct, Cmt from require "lpeg" | 710 | import C, Ct, Cmt from require "lpeg" |
711 | -- 快捷写法引入模块的子项 | ||
712 | import x, y, z from 'mymodule' | ||
709 | 713 | ||
710 | -- 快捷地导入一个模块 | 714 | -- 快捷地导入一个模块 |
711 | do | 715 | do |