views:

58

answers:

1

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.

+3  A: 

I would advise you to look at the Co-routine tutorial and see if that is helpful for you.

a_m0d
thanks it helped
Aaron de Windt