The OpenD Programming Language

create

Creates and starts a new Thread object that executes dg and adds it to the list of tracked threads.

final
create
(
void delegate
()
dg
)

Parameters

dg void delegate
()

The thread function.

Return Value

Type: Thread

A reference to the newly created thread.

Meta