blob: e192328d62305fdd603f55a4d55b33362cfa2eee (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import java.lang.annotation.*;
public class CodeExtra4 {
public static boolean isTrue = true;
public void m() { }
public static void main(String []argv) {
new CodeExtra4().m();
}
}
|