Skip to content
Snippets Groups Projects
Forked from GOSSA JULIEN / P4a
16 commits ahead of the upstream repository.
MainArrayListPerso.java 247 B
package p4a;

public class MainArrayListPerso {

	public static void main(String[] args) {
		ArrayListPerso<Integer> arraylistPerso = new ArrayListPerso<Integer>();
		
		for (int i = 0; i < 100000; i++) {
			arraylistPerso.ajout(i, 0);
		}

	}

}