From d6f2d8a80d692d71563f8687d7c822432c397662 Mon Sep 17 00:00:00 2001 From: Ileyan <3003916@stud.hs-mannheim.de> Date: Thu, 16 May 2024 14:17:55 +0200 Subject: [PATCH] Update notizen.md --- notizen.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/notizen.md b/notizen.md index e18e1d6..7e67e49 100644 --- a/notizen.md +++ b/notizen.md @@ -7,15 +7,15 @@ - Gleiche Schlüsselwörter wie in Java, Schlüsselwörter können jedoch auch als Methoden- /Variablennamen verwendet werden - ` - public class Hi { - public static void main (String [] args) { - new Hi().this() - } + ``` + public class Hi { + public static void main (String [] args) { + new Hi().this() + } def "this"(){ print "hello" } - } - ` + } + ```