fin arbre

This commit is contained in:
2024-11-27 12:26:48 +01:00
parent d6a9265998
commit 85103a2222
53 changed files with 1412 additions and 239 deletions

View File

@@ -0,0 +1,4 @@
// Classe représentant un nœud de l'arbre de syntaxe
public abstract class Node {
public abstract String toPrefix(); // Convertir en notation préfixe
}