I have a really simple groovy script-
import groovy.transform.Field
@Field final static String VARIABLE = 'Variable'
static void main(String[] args) {
println VARIABLE
}
But the output is empty, how can I make a global, static constant in groovy and use it in static methods?