I need to store a value in a variable in one method and then I need to use that value from that variable in another method or closure. How can I share this value?
class Globals { static String ouch = "I'm global.." } println Globals.ouch