Skip to content

Instantly share code, notes, and snippets.

@danhyun
Created October 15, 2014 16:12
Show Gist options
  • Save danhyun/7d71d3a145d6bafe9168 to your computer and use it in GitHub Desktop.
Save danhyun/7d71d3a145d6bafe9168 to your computer and use it in GitHub Desktop.
plain ol' groovy
// map based constructor
def nightcrawler = new Hero(name: 'Nightcrawler')
assert nightcrawler.name == 'Nightcrawler'
// with block
def nightcrawler = new Hero().with { h->
name = 'Nightcrawler'
power = 'teleportation'
h
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment