mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-18 19:02:27 +00:00
1eecdac6de
Change-Id: I6d730d67decc859fd130fee5ec92b1cfb8d9ef64
21 lines
288 B
Lua
21 lines
288 B
Lua
-- This data is valid
|
|
local t = {
|
|
["true"] = true,
|
|
["false"] = false,
|
|
NaN = 0/0,
|
|
inf = 1/0,
|
|
num = 12.5,
|
|
str = "foo bar",
|
|
table = {
|
|
"one", "two", "three", foo = "bar"
|
|
}
|
|
}
|
|
|
|
-- Duplicate values
|
|
t.table2 = t.table
|
|
|
|
-- Make sure recursion is correctly handled, too
|
|
t.t = t
|
|
|
|
return t
|