Skip to content

Instantly share code, notes, and snippets.

@thieux
Created September 25, 2018 10:02
Show Gist options
  • Save thieux/319a40eb8a275d4cdf23517f8d62f095 to your computer and use it in GitHub Desktop.
Save thieux/319a40eb8a275d4cdf23517f8d62f095 to your computer and use it in GitHub Desktop.
Jeu de la vie
for (BoitePetri boite = new BoitePetri(16); boite.generation() < 100; boite = boite.prochaineGeneration()) {
System.out.println(boite);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment