SimpleCalc is a two operations calculator that is capable of doing summatory and subtraction of very big integer values.
Addition – Adds big integer numbers
Subtraction – Subtracts big integer numbers
Follow these steps to run the program locally.
- Git
- Golang
go install . -o simplecalc
./ simplecalc <operation> <integer> <integer>
## Addition
$> ./simplecalc add 9823498729 2349827948
The result is: 12173326677
## Subtraction
$> ./simplecalc sub 9823498729 2349827948
The result is: 7473670781
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.