public class AbreNim { private Noeud root; public AbreNim(int valeur) { this.root = new Noeud(valeur); } public Noeud getRoot() { return root; } }