diff options
| author | ThePrimeAgain <theprimeagain@theprimeagain.com> | 2026-01-14 18:48:41 -0700 |
|---|---|---|
| committer | ThePrimeAgain <theprimeagain@theprimeagain.com> | 2026-01-14 18:48:41 -0700 |
| commit | 75fd8aa73919e26a2b33871a78bae34e604ba558 (patch) | |
| tree | 7f1064e38e62aa3c0c62248f4e0eb1cd605dbfac /scratch | |
| parent | 6c88a9537ae829cd8a4b92312e115c311e6beb42 (diff) | |
| download | a4-75fd8aa73919e26a2b33871a78bae34e604ba558.tar.xz a4-75fd8aa73919e26a2b33871a78bae34e604ba558.zip | |
window building:
Diffstat (limited to 'scratch')
| -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() |
