/golang_calculator

A simple calculator written with Golang

Primary LanguageGo

To run the application, run:

go run main.go

The structure of the application is as follows:

├── calc
│   └── calc.go
└── main.go

The calc package contains the logic for the addition, multiplication, subtraction and division; each of them being a separate method of the package. For I/O, the application uses the fmt package.