Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dalexeev/gdscript-rpn-calculator


https://github.com/dalexeev/gdscript-rpn-calculator

Last synced: 17 days ago
JSON representation

Awesome Lists containing this project

README

        

# gdscript-rpn-calculator

![image](screenshots/calc.png)

## Notes

* 5 arithmetic operations and parenthesis are supported.
* The implementation converts to [Reverse Polish notation](https://en.wikipedia.org/wiki/Reverse_Polish_notation) using a simplified [Shunting yard algorithm](https://en.wikipedia.org/wiki/Shunting_yard_algorithm).
* The standard [Expression](https://docs.godotengine.org/en/stable/classes/class_expression.html) class is intentionally not used.