Created
July 20, 2020 01:31
-
-
Save tjdevries/71ff296239baabe7d9cb694786506fe6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function x() | |
return 1, 2 | |
end | |
function y() | |
local foo = {{x()}, {x()}} | |
return vim.tbl_flatten(foo) | |
end | |
print(vim.inspect(y())) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🥇