diff options
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 95ae614..0cd6dc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -2,6 +2,19 @@ | |||
2 | 2 | ||
3 | The implementation for the original Moonscript language 0.5.0 can be found in the `0.5.0` branch of Yuescript. The Moonscript with fixes and new features is in the main branch of Yuescript. Here are the changelogs for each Yuescript version. | 3 | The implementation for the original Moonscript language 0.5.0 can be found in the `0.5.0` branch of Yuescript. The Moonscript with fixes and new features is in the main branch of Yuescript. Here are the changelogs for each Yuescript version. |
4 | 4 | ||
5 | ## v0.18.1 | ||
6 | |||
7 | ### Added Features | ||
8 | |||
9 | * Implemented '...' for variable declaration within scope using anonymous functions. | ||
10 | ```moonscript | ||
11 | ok, ... = fn! | ||
12 | if ok | ||
13 | print select '#', ... | ||
14 | print select 1, ... | ||
15 | ``` | ||
16 | * Added close-variables support for Lua version targets below 5.4. | ||
17 | |||
5 | ## v0.17.10 | 18 | ## v0.17.10 |
6 | 19 | ||
7 | ### Added Features | 20 | ### Added Features |