Python Echo A basic Python CLI script that echoes what the user types. Usage python echo.py π§ Repo 3: js-timer (JavaScript) π File: timer.js // A simple countdown timer using setTimeout console.log("Starting timer..."); setTimeout(() => { console.log("β° Time's up!"); }, 3000);