end of project

This commit is contained in:
2025-08-15 16:14:02 +02:00
parent 495935dc74
commit d6ab65d7cf
10 changed files with 278 additions and 41 deletions

View File

@@ -9,7 +9,7 @@ class Calculator:
"/": lambda a, b: a / b,
}
self.precedence = {
"+": 1,
"+": 3,
"-": 1,
"*": 2,
"/": 2,