A simple console-based C++ application that lets you run multiple countdown timers in parallel using std::thread.
- User-defined task names and durations
- Each task runs in its own thread
- Countdown shown for each task
- Clean terminal output
- C++11 Threads (
std::thread) - Delays using
std::this_thread::sleep_for - Time with
std::chrono - Basic I/O and vector management
- Use Replit
- Compile:
g++ main.cpp -o timer -pthread - Run:
./timer

