Posted 15 July 2016 - 03:24 PM
How can I call a coroutine with a string? For example:
co = coroutine.create(function()
print("test")
end)
cor = "co"
coroutine.resume(cor)
This is just for example. I need this in a komplexer code.