mirror of
https://github.com/RGBCube/serenity
synced 2025-10-30 23:22:43 +00:00
Because of this the unary operations got applied to the result of the
operation-in-progress instead of the current argument as shown here:
`16 + 9 <sqrt> =`
Previous output: `sqrt(16 + 9)` = `5`
Expected output: `16 + sqrt(9)` = `19`
|
||
|---|---|---|
| .. | ||
| Calculator.cpp | ||
| Calculator.h | ||
| CalculatorWidget.cpp | ||
| CalculatorWidget.h | ||
| CalculatorWindow.gml | ||
| CMakeLists.txt | ||
| Keypad.cpp | ||
| Keypad.h | ||
| main.cpp | ||