1 2 3 4 5 6 7 8 9 10 11 12
extern public void T() { T1(); } public void T1() { show( "T1" ); T2(); } public void T2() { show( "T2" ); }