more whitespace sepcs for table

This commit is contained in:
leaf corcoran 2015-02-28 14:10:45 -08:00
parent 5e162e22a5
commit adccbadf18
2 changed files with 30 additions and 2 deletions

View File

@ -123,7 +123,21 @@ kam = {
one_thing =>
}
-- TODO: both of these have undesirable output
keepit going: true,
okay: "yeah",
workd: "okay"
thing what:
"great", no:
"more"
okay: 123
--
thing what:
"great", no:
"more"
okay: 123 -- a anon table
nil

View File

@ -152,9 +152,23 @@ local kam = {
"two"
}] = one_thing(function(self) end)
}
return keepit({
keepit({
going = true
}, {
okay = "yeah",
workd = "okay"
})
})
thing({
what = "great",
no = "more"
}, {
okay = 123
})
thing({
what = "great",
no = "more"
})
local _ = {
okay = 123
}
return nil