Contact: aviboots(AT)netvision.net.il
41,445 questions
53,992 answers
573 users
def x = 2343 printf "%s - %s%n", x.getClass().getName(), x x = "Groovy" // reassigned to different type printf "%s - %s%n", x.getClass().getName(), x /* run: java.lang.Integer - 2343 java.lang.String - Groovy */