Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- brain = {}
- function FirstThought()
- local newThought = {}
- for i=1, 1000 do
- newThought[i] = i
- end
- table.insert(brain, newThought)
- end
- function NextThought()
- local newThought = brain
- table.insert(brain, newThought)
- NextThought()
- end
- FirstThought()
- NextThought()
Advertisement
Add Comment
Please, Sign In to add comment