diff options
author | Li Jin <dragon-fly@qq.com> | 2025-05-23 15:07:45 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2025-05-23 15:07:45 +0800 |
commit | 4ba4c90e711c6204aa40e38347c5a5a076d9370e (patch) | |
tree | c929f1f5dc7002a65311db82abf4228aaa979925 /spec/outputs/tables.lua | |
parent | cf0a0f37bf07eb8e9435febe96e3adfe45004f91 (diff) | |
download | yuescript-main.tar.gz yuescript-main.tar.bz2 yuescript-main.zip |
Diffstat (limited to '')
-rw-r--r-- | spec/outputs/tables.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/outputs/tables.lua b/spec/outputs/tables.lua index f358811..3f851de 100644 --- a/spec/outputs/tables.lua +++ b/spec/outputs/tables.lua | |||
@@ -366,6 +366,28 @@ local menus = { | |||
366 | } | 366 | } |
367 | } | 367 | } |
368 | } | 368 | } |
369 | _ = { | ||
370 | boolean = { | ||
371 | true, | ||
372 | false | ||
373 | }, | ||
374 | float = { | ||
375 | 3.14, | ||
376 | -6.8523015e+5 | ||
377 | }, | ||
378 | int = { | ||
379 | 123, | ||
380 | -685230 | ||
381 | }, | ||
382 | null = { | ||
383 | nodeName = 'node', | ||
384 | parent = nil | ||
385 | }, | ||
386 | string = { | ||
387 | 'Hello world', | ||
388 | "newline\nnewline2" | ||
389 | } | ||
390 | } | ||
369 | local tb | 391 | local tb |
370 | do | 392 | do |
371 | local _tab_0 = { } | 393 | local _tab_0 = { } |