JSON
json.object
Real JSON encoder가 object로 처리하도록 new table marked as a JSON object를 생성합니다.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Real JSON encoder가 object로 처리하도록 new table marked as a JSON object를 생성합니다.
json.object(source?: table): table
local profile = json.object({
name = "Guest",
active = true,
})
local empty = json.object()
print(json.encode(profile))
print(json.encode(empty))