summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--README_zh.md8
2 files changed, 16 insertions, 0 deletions
diff --git a/README.md b/README.md
index 606d800db..a8742d46c 100644
--- a/README.md
+++ b/README.md
@@ -254,6 +254,14 @@ $ xmake project -k compile_commands
$ xmake l ./test.lua
$ xmake l -c "print('hello xmake!')"
$ xmake l lib.detect.find_tool gcc
+$ xmake l
+> print("hello xmake!")
+> {1, 2, 3}
+< {
+ 1,
+ 2,
+ 3
+ }
```
More builtin plugins, please see: [Builtin plugins](https://xmake.io/#/plugin/builtin_plugins)
diff --git a/README_zh.md b/README_zh.md
index 25e685f19..b826f15a9 100644
--- a/README_zh.md
+++ b/README_zh.md
@@ -259,6 +259,14 @@ $ xmake project -k compile_commands
$ xmake l ./test.lua
$ xmake l -c "print('hello xmake!')"
$ xmake l lib.detect.find_tool gcc
+$ xmake l
+> print("hello xmake!")
+> {1, 2, 3}
+< {
+ 1,
+ 2,
+ 3
+ }
```
更多内置插件见相关文档:[内置插件文档](https://xmake.io/#/zh-cn/plugin/builtin_plugins)