Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local instructions = {
- ["$"] = function(stack) stack:pop() end,
- [":"] = function(stack) local var = stack:pop(); stack:push(var, var) end,
- ["\\"] = function(stack) stack:push(stack:pop(), stack:pop) end
- }
Advertisement
Add Comment
Please, Sign In to add comment