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.

M.java 230B

12345678910
  1. package m;
  2. public class M {
  3. public void run() {
  4. }
  5. public static void main(String[] args) {
  6. for (int i = 0; i < 3; i++) {
  7. new M().run();
  8. }
  9. }
  10. }