docs: Highlight the fact that extra syntax isn't supported

This commit is contained in:
Arseny Kapoulkine 2020-06-11 08:50:38 -07:00
parent 476fcf0ae7
commit 8ba5114adf
1 changed files with 3 additions and 3 deletions

View File

@ -18,15 +18,15 @@ local function tree_insert(tree, x)
end end
``` ```
Note that future versions of Lua extend the Lua 5.1 syntax with the following features: Note that future versions of Lua extend the Lua 5.1 syntax with the following features; with the exception of the string literals, these are **not** supported by Luau:
- hexadecimal (\\0x), Unicode (\\u) and \\z escapes for string literals - hexadecimal (\\0x), Unicode (\\u) and \\z escapes for string literals
- goto statements - goto statements and labels
- bitwise operators - bitwise operators
- floor division operator (//) - floor division operator (//)
- \<toclose> and \<const> local attributes - \<toclose> and \<const> local attributes
Luau implements the string literal extensions, but no other features; for details please refer to [compatibility section](compatibility.md). > For details please refer to [compatibility section](compatibility.md).
The rest of this document documents additional syntax used in Luau. The rest of this document documents additional syntax used in Luau.