Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 203 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 203 Bytes

Simple CLI calculator

User input
3 + 2, 9 / 3, 7 - 4, 5 * 9

Output:
5 * 9 = 45
3 + 2 = 5
9 / 3 = 3
7 - 4 = 3

All operations are computed asynchroniously in goroutines