From 0079221776106e3ca91076938e80d37e38eacc29 Mon Sep 17 00:00:00 2001
From: Hong-Phuc Bui <hong-phuc.bui@htwsaar.de>
Date: Fri, 17 Oct 2025 07:01:14 +0200
Subject: [PATCH] 1. Vorlesung

---
 textbased-programms/euclidean-algorithm.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/textbased-programms/euclidean-algorithm.js b/textbased-programms/euclidean-algorithm.js
index 32a4579..d7fcc06 100644
--- a/textbased-programms/euclidean-algorithm.js
+++ b/textbased-programms/euclidean-algorithm.js
@@ -5,7 +5,7 @@
 
 import {terminal} from "./dfhi.js";
 
-window.main = function(...argv) {
+window.main = (...argv) => {
 	let a = Number.parseInt(argv[0], 10);
 	let b = Number.parseInt(argv[1], 10);
 	let t = b;

--
Gitblit v1.10.0