Skip to content

Instantly share code, notes, and snippets.

@jeffscottbrown
Last active April 7, 2016 09:59
Show Gist options
  • Select an option

  • Save jeffscottbrown/4182689de487968b9f7f57e8f3ba08aa to your computer and use it in GitHub Desktop.

Select an option

Save jeffscottbrown/4182689de487968b9f7f57e8f3ba08aa to your computer and use it in GitHub Desktop.
def x = [:].with {
a = 8
b = 2
c = a / b
delegate
}
Or...
def x = [:]
x.with {
a = 8
b = 2
c = a / b
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment