summaryrefslogtreecommitdiff
path: root/scratch
diff options
context:
space:
mode:
authorThePrimeAgain <theprimeagain@theprimeagain.com>2026-01-14 18:48:41 -0700
committerThePrimeAgain <theprimeagain@theprimeagain.com>2026-01-14 18:48:41 -0700
commit75fd8aa73919e26a2b33871a78bae34e604ba558 (patch)
tree7f1064e38e62aa3c0c62248f4e0eb1cd605dbfac /scratch
parent6c88a9537ae829cd8a4b92312e115c311e6beb42 (diff)
downloada4-75fd8aa73919e26a2b33871a78bae34e604ba558.tar.xz
a4-75fd8aa73919e26a2b33871a78bae34e604ba558.zip
window building:
Diffstat (limited to 'scratch')
-rw-r--r--scratch/refresh.lua20
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()