outside the thread in main it returns me false; any thoughts ?
import flora; class DerivedThread : Thread { this() { super(&run); } private: void run() { // Derived thread running. zeus = true; while(true) { } } } void main() { auto derived = new DerivedThread().start(); writeln(zeus); }