mirror of
https://github.com/zoriya/telescope.nvim.git
synced 2026-05-24 15:18:49 +00:00
11 lines
79 B
Lua
11 lines
79 B
Lua
local y = function() end
|
|
|
|
local x = function()
|
|
asdf
|
|
print(y)
|
|
end
|
|
|
|
x()
|
|
|
|
y()
|