This commit is contained in:
2021-04-06 00:45:28 +02:00
commit 17fabc368e
836 changed files with 3042963 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package org.cloudbus.cloudsim.util;
public class Test2 {
public Test t;
public String st;
public Test2(int i){
t = new Test(i);
st = new String("PP");
}
}