Skip to content

Instantly share code, notes, and snippets.

View kiedtl's full-sized avatar
💭
I may be slow to respond.

kiedtl kiedtl

💭
I may be slow to respond.
  • lolcathost
View GitHub Profile
@kiedtl
kiedtl / uranium.lua
Last active July 23, 2023 12:17
Glory to the People's Republic. Glory to Dear Leader
#!/usr/bin/env lua5.3
function shallow_copy(t)
local t2 = {}
for k,v in pairs(t) do
t2[k] = v
end
return t2
end