BUT3JEU/testraté/AbreNim.java
SimonSayeBabu 9862082bf2 TD2
2024-09-17 16:45:49 +02:00

14 lines
187 B
Java

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