Update notizen.md

main
Ileyan Al Jaaf 2024-05-16 14:18:40 +02:00
parent d6f2d8a80d
commit bf928bc101
1 changed files with 4 additions and 4 deletions

View File

@ -9,12 +9,12 @@
``` ```
public class Hi { public class Hi {
public static void main (String [] args) { public static void main (String [] args) {
new Hi().this() new Hi().this()
} }
def "this"(){ def "this"() {
print "hello" print "hello"
} }
} }