Update README

This commit is contained in:
2017-04-10 15:01:25 +02:00
parent e5b7f09495
commit 5cfade4bba
2 changed files with 26 additions and 2 deletions

View File

@@ -9,11 +9,11 @@ public class Main {
public static void main(String[] args) {
Expression e = new Expression();
e.negExpressionPrefixe();
System.out.println(e.getExpressionPrefixe());
//System.out.println(e.getExpressionPrefixe());
System.out.println();
Tree treeExpression = new Tree(e.getExpressionPrefixe());
treeExpression.display();
//treeExpression.display();
Handling handling = new Handling(treeExpression.getRoot());
}