diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-03-27 16:20:36 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-03-27 16:20:36 -0400 |
commit | 58d5e288e0bfaa9819b68b376767a8a39a97fef8 (patch) | |
tree | cf73d74fef599ece2d9c85a9700951dcd27c1970 /indra/newview/scripts/lua | |
parent | c618758c7c91917905b1075e29944ef70e7e9b33 (diff) |
poetry
Diffstat (limited to 'indra/newview/scripts/lua')
-rw-r--r-- | indra/newview/scripts/lua/Queue.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/scripts/lua/Queue.lua b/indra/newview/scripts/lua/Queue.lua index b0a5a87f87..5ab2a8a72c 100644 --- a/indra/newview/scripts/lua/Queue.lua +++ b/indra/newview/scripts/lua/Queue.lua @@ -1,6 +1,12 @@ -- from https://create.roblox.com/docs/luau/queues#implementing-queues, -- amended per https://www.lua.org/pil/16.1.html +-- While coding some scripting in Lua +-- I found that I needed a queua +-- I thought of linked list +-- But had to resist +-- For fear it might be too obscua. + local Queue = {} function Queue:new() |