Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.

Latest commit

 

History

History
37 lines (24 loc) · 597 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 597 Bytes

MicroProjects

MicroProjects are small exercises that are meant to take anywhere from 15 minutes to 4 hours. These projects are also meant to be done in multiple languages in multiple different ways. Feel free to submit multiple different solutions.

Project List

Add

CLI Tool to add numbers.

./add [ARGS]

eg.

./add 10 12.2
Addition : 22.2

With xargs from file output :

cat file.txt | xargs ./add
Addition : 22.2

Examples