class Pessoa{ def show = { println "groovy show" } } def p = new Pessoa() def x = null p.show() x?.show()