From 9ba573284ccde687b4c190c0f44032eef846410a Mon Sep 17 00:00:00 2001
From: Hong-Phuc Bui <hong-phuc.bui@htwsaar.de>
Date: Thu, 20 Nov 2025 16:20:11 +0100
Subject: [PATCH] Bugfix

---
 textbased-programms/hello-name.js |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/textbased-programms/hello-name.js b/textbased-programms/hello-name.js
index fd08c53..66d975b 100644
--- a/textbased-programms/hello-name.js
+++ b/textbased-programms/hello-name.js
@@ -7,6 +7,7 @@
 
 
 window.main = (...argv) => {
-	let name = argv[0];
-	terminal.print(`Hallo, ${name}!`)
+    for(let e of argv) {
+        terminal.printl(e);
+    }
 };
\ No newline at end of file

--
Gitblit v1.10.0