View difference between Paste ID: n45KPAYh and 5eJWmRAZ
SHOW: | | - or go back to the newest paste.
1
function listen()
2
	for i=1,10,1
3-
		do
3+
	do
4
		print(i)
5-
		end
5+
6
end
7
8
function repeat()
9
	for i=1,10,1
10-
		do
10+
	do
11
		print(i)
12
	end
13
end
14
15
parallel.WaitForAll(listen, repeat)