summaryrefslogtreecommitdiff
path: root/scratch
diff options
context:
space:
mode:
authorThePrimeAgain <theprimeagain@theprimeagain.com>2025-12-30 08:40:16 -0700
committerThePrimeAgain <theprimeagain@theprimeagain.com>2025-12-30 08:40:16 -0700
commita0ea980ab1af0bcdc92739d2b0cf4ef73290f0bd (patch)
treeac03329bf9821bdf3f6e57bd4e2ce7ba13ef677b /scratch
parenta6a88b75d92ef236980b73102108d1fd758169d1 (diff)
downloada4-a0ea980ab1af0bcdc92739d2b0cf4ef73290f0bd.tar.xz
a4-a0ea980ab1af0bcdc92739d2b0cf4ef73290f0bd.zip
visual selection bugs finished! product release time
Diffstat (limited to 'scratch')
-rw-r--r--scratch/refresh.lua10
1 files changed, 1 insertions, 9 deletions
diff --git a/scratch/refresh.lua b/scratch/refresh.lua
index 42ba7e4..2d7b27b 100644
--- a/scratch/refresh.lua
+++ b/scratch/refresh.lua
@@ -1,17 +1,9 @@
R("99")
+local foo_bar = {fizz = 3}
function fizz_buzz(count)
local result = {}
for i = 1, count do
- if i % 15 == 0 then
- table.insert(result, "FizzBuzz")
- elseif i % 3 == 0 then
- table.insert(result, "Fizz")
- elseif i % 5 == 0 then
- table.insert(result, "Buzz")
- else
- table.insert(result, i)
- end
end
return result
end