chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:22:17 +08:00
commit 4d7ba00a23
95 changed files with 6907 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env luajit
cfizz,cbuzz=0,0
for i=1,20 do
cfizz=cfizz+1
cbuzz=cbuzz+1
io.write(i .. ": ")
if cfizz~=3 and cbuzz~=5 then
io.write(i)
else
if cfizz==3 then
io.write("Fizz")
cfizz=0
end
if cbuzz==5 then
io.write("Buzz")
cbuzz=0
end
end
io.write("\n")
end