Skip to content

Instantly share code, notes, and snippets.

@zCrxtix
zCrxtix / rStack.lua
Last active June 1, 2022 14:02
A stack implementation in Roblox
local rStack = {}
rStack.__index = rStack
function rStack.new()
local self = setmetatable({}, rStack)
self.Stack = {}
return self
end
function rStack:append(value : number)