678910111213141516
*/ public class Main { public static void main(String[] args) { Anthill anthill1 = new Anthill(); anthill1.initGame(); for (int i = 1; i > 0; i++){ //boucle qui permet de générer un grand nombre d'age de fourmilière anthill1.nextGeneration(); } }