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

public class Main {

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

}