Skip to content

Instantly share code, notes, and snippets.

@ntoper
Created March 9, 2021 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ntoper/007380784585455afb3ed97eb6c722fa to your computer and use it in GitHub Desktop.
Save ntoper/007380784585455afb3ed97eb6c722fa to your computer and use it in GitHub Desktop.
package io.manycore;
public class Main {
public static void main(String[] args) throws ClassNotFoundException {
boolean flag = false;
if (System.getenv("PROD").equals("1"));
flag = true;
if (flag) {
for (int methodToCallCount=0; methodToCallCount <= 7; methodToCallCount++) {
for (int classCount = 0; classCount <= 15; classCount++) {
Class thisClass = Class.forName("io.manycore.reflection.Meng" + classCount);
System.out.println(thisClass.toString());
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment