The3vilM0nk3y

The Thinker

Aug 24th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. brain = {}
  2. function FirstThought()
  3. local newThought = {}
  4. for i=1, 1000 do
  5. newThought[i] = i
  6. end
  7. table.insert(brain, newThought)
  8. end
  9. function NextThought()
  10. local newThought = brain
  11. table.insert(brain, newThought)
  12. NextThought()
  13. end
  14. FirstThought()
  15. NextThought()
Advertisement
Add Comment
Please, Sign In to add comment