10 lines
397 B
Markdown
10 lines
397 B
Markdown
# Golang Calculator
|
|
|
|
A simple command-line calculator written in Go, created to demonstrate practical proficiency with the language.
|
|
|
|
## Features
|
|
|
|
- Supports basic arithmetic: addition (+), subtraction (-), multiplication (*), and division (/)
|
|
- Input validation to ensure correct operator and numeric input
|
|
- Handles division by zero gracefully
|
|
- Structured using functions and clear control flow |