├── .gitattributes ├── .gitignore ├── README.md └── main.py /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | worst.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # worst-ever-calculator 2 | THE WORST calculator ever made 3 | 4 | But what the heck it works 5 | 6 | 7 | 800031 lines of pain 8 | 9 | ![image](https://user-images.githubusercontent.com/74973491/184882170-428097d3-11f7-498a-b043-c998cd83f8cc.png) 10 | --------------------------------------------------------------------------------