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