diff options
Diffstat (limited to 'scratch/refresh.lua')
| -rw-r--r-- | scratch/refresh.lua | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/scratch/refresh.lua b/scratch/refresh.lua index 2d7b27b..3e07ad7 100644 --- a/scratch/refresh.lua +++ b/scratch/refresh.lua @@ -1,15 +1,11 @@ +local Window = require("99.window") +Window.clear_active_popups() R("99") -local foo_bar = {fizz = 3} -function fizz_buzz(count) - local result = {} - for i = 1, count do - end - return result -end - ---- @param numbers number[] -function sort(numbers) - table.sort(numbers) - return numbers +function test() + local Window = require("99.window") + Window.capture_input(function(input) + print(input) + end, {}) end +test() |
