Guest User

Untitled

a guest
May 27th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. local instructions = {
  2.   ["$"] = function(stack) stack:pop() end,
  3.   [":"] = function(stack) local var = stack:pop(); stack:push(var, var) end,
  4.   ["\\"] = function(stack) stack:push(stack:pop(), stack:pop) end
  5. }
Advertisement
Add Comment
Please, Sign In to add comment