Skip to content

Instantly share code, notes, and snippets.

@potix2
Last active December 15, 2015 05:49
Show Gist options
  • Save potix2/5211862 to your computer and use it in GitHub Desktop.
Save potix2/5211862 to your computer and use it in GitHub Desktop.
Example: Multiple Assignment in groovy
list = [1, 2, 3]
def (c, d, e) = list
println c
println d
println e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment