groovy-lecture/test.groovy

9 lines
143 B
Groovy
Raw Normal View History

2024-05-16 14:15:12 +02:00
public class Hi {
public static void main (String [] args) {
new Hi().this()
}
def "this"(){
print "hello"
}
}