Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
לומה מחכה לפקודות 👇
הי לומה ▶️
`; const input = document.getElementById("luma-command"); const output = document.getElementById("luma-output"); input.addEventListener("keydown", function (e) { if (e.key === "Enter") { const cmd = input.value.trim(); switch (cmd) { case "שלום": case "היי לומה": case "הי לומה": output.innerHTML = "🔥 שלום! אני מוכנה להריץ פקודות. נסה 'help'."; break; case "help": output.innerHTML = "📜 פקודות זמינות: שלום | help | ping | status"; break; case "ping": output.innerHTML = "🏓 pong!"; break; default: output.innerHTML = `🤯 לא הבנתי את הפקודה '${cmd}'`; } } }); });