We have main block of code with func() in it and some code after it. Is it possible to run code after calling func() in parallel with func(). I need parallel started from func() itself, not from main code, i.e.
local function func()
-- Some code here to start parallel and do function's stuff'
end
func()
print("Hi! I need this code run in parallel with func()!")
print("Is it possible?")
print("PS Parallel have to be started from func() - I'm making an API")
I hope you understood












