-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# odin-calculator | ||
Rewrite of first functional version of odin-calculator, using object-oriented principles to organize the code according to the Model-View-Controller paradigm. The goal of the rewrite is to practice using abstraction and seperation of concerns to create more modular code. | ||
Calculator for The Odin Project. Currently fully functional as a 4 function calculator. Allows operation chaining and repeat operations by pressing = repeatedly. Can handle very large and very small numbers with exponential notation, though resolution is lost. | ||
|
||
This is a rewrite of my first functional version of odin-calculator, using object-oriented principles to organize the code. Functionality is the same aside from a few bug fixes. The goal of the rewrite was to practice using abstraction and seperation of concerns to create more modular code. | ||
|
||
https://strbytes.github.io/odin-calculator/ |