From e1e5ec6685fcd6c569d6eb7323dc33b38bad9770 Mon Sep 17 00:00:00 2001 From: Reckling Date: Thu, 19 Dec 2019 14:16:43 +0100 Subject: [PATCH 1/2] plot() und lines() remove #4 --- Datei1.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Datei1.txt b/Datei1.txt index 0fea95a..757dab9 100644 --- a/Datei1.txt +++ b/Datei1.txt @@ -8,3 +8,6 @@ def neue_funktion(): aki <- func(x) { print(x) } + +plot(1:10, rep(1,10)) +lines(1:10, 1:10) \ No newline at end of file From 70d937383ae46709bb9d71a1876b47ae92fd9de4 Mon Sep 17 00:00:00 2001 From: Akira Naru Takizawa Date: Thu, 19 Dec 2019 14:28:02 +0100 Subject: [PATCH 2/2] Schleifenfunktion resolve #2 --- Datei1.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Datei1.txt b/Datei1.txt index 0fea95a..8de3dc3 100644 --- a/Datei1.txt +++ b/Datei1.txt @@ -5,6 +5,10 @@ Lorem Ipsum def neue_funktion(): print("funk") +def schleife(): + for i in range(10): + print(i) + aki <- func(x) { print(x) }