diff options
Diffstat (limited to 'spec/outputs/export_mixed.lua')
| -rw-r--r-- | spec/outputs/export_mixed.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/outputs/export_mixed.lua b/spec/outputs/export_mixed.lua new file mode 100644 index 0000000..35529e2 --- /dev/null +++ b/spec/outputs/export_mixed.lua | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | local _module_0 = { } | ||
| 2 | local answer = 42 | ||
| 3 | _module_0["answer"] = answer | ||
| 4 | local foo | ||
| 5 | foo = function() | ||
| 6 | return "bar" | ||
| 7 | end | ||
| 8 | _module_0["foo"] = foo | ||
| 9 | local baz = "baz" | ||
| 10 | _module_0["baz"] = baz | ||
| 11 | return _module_0 | ||
