thread_create [function]
thread_create( fn, this[, args..] )
Starts a managed topmost coroutine (thread).
- This function returns the created thread.
- The function passed is immediately called once.
- This thread is owned by the topmost owned thread (engine thread or coroutine created with co_create) - if it's destroyed, this thread will be aborted and destroyed as well.