Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleWith a for loop we can push these messages into the queue:

See Lua tables as lists

Code Block
for i=1, #List do
   queue.push{data=List[i]}
end

And now we have a working test component!

Expand
titleConnect it the component we want to test with - done!

See Linking components if you need a fresherrefresher.

Now for a little extra flourish:

...