11 lines
177 B
Java
11 lines
177 B
Java
|
class TestMyTest{
|
||
|
public static void main(String[] a){
|
||
|
//test1
|
||
|
//new TestClass();
|
||
|
//test if statement
|
||
|
//new TestIf(new Boolean(true));
|
||
|
// test lambda
|
||
|
new TestClass();
|
||
|
}
|
||
|
}
|