Note: (Restricted functionality due to obvious reasons!)

For Mobile-Ease ⇓

Minimal Code ( Raw-View ) :
class Thread01 { public static void main(String zee[]) { T1 obj = new T1(); Thread obj2 = new Thread(new T2()); // T2-class -implements Runnable obj.start(); obj2.start(); } }