You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Main.java 309B

1234567891011
  1. import org.aspectj.testing.Tester;
  2. import jar.required.Global;
  3. import classfile.required.ClassFile;
  4. public class Main {
  5. public static void main (String[] args) {
  6. Tester.check(ClassFile.isTrue(), "not ClassFile.isTrue()?");
  7. Tester.check(Global.isTrue(), "not Global.isTrue()?");
  8. }
  9. }