Very Simple cli made using cobra which acts as a calculator.
The calculator can perform the operations such as addition,division and multiplication.
After cloning the Repository ,run the command go run main.go
followed by the subcommands
1)To perform Division:d [num1] [num2]
2)To perform Multiplication:p num[1] num[2] ...
2)To perform Addition:add num[1] num[2] ...
Returns all answers in form of integers.
Note:While inserting negative integers add the flag --, for eg:go run main.go add -- -11 21
.