Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 365 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 365 Bytes

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.