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" } - } - ` + } + ```