Skip to content

Instantly share code, notes, and snippets.

View UserUNP's full-sized avatar
🐈‍⬛
mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm

oven UserUNP

🐈‍⬛
mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
View GitHub Profile
@UserUNP
UserUNP / bit.lua
Last active December 8, 2022 19:37
local bit = {}
function bit.lshift(a, b)
return (a << b)
end
function bit.rshift(a, b)
return (a >> b)
end