I was reading the lua manual (looking for something) and I found out that there is a type named thread in lua. Of wath I read it represents independent threads of execution and it is used to implement coroutines.
Here is the link to the place I read it.
http://www.lua.org/manual/5.1/manual.html#2.2
How do I use these threads? Are there any good tutorials?
I have googled and had no luck.