Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
json.encode 를 위해 JSON array 로 표시된 new table 을 만들고, source table 이 제공되면 1.#source sequence 를 복사합니다.
json.array(source?: table): table
source
table
array
local tags = json.array({ "api", "docs", "luau" }) local empty = json.array() print(json.encode(tags)) print(json.encode(empty)) print(json.type(empty))