Final Variables in Groovy Curiosity

(On my local I’m running Groovy 2.1.9 on Java/JDK 6). Was having a Discussion of final and static, and decided to try something in groovyConsole.  In the Java world, a final variable cannot be reassigned a value once initialized. Groovy Code: final String i = “test” println i i = “red”println i Output: groovy> final […]