Skip to content

Instantly share code, notes, and snippets.

@mfollett
Created August 29, 2011 03:00
Show Gist options
  • Save mfollett/1177684 to your computer and use it in GitHub Desktop.
Save mfollett/1177684 to your computer and use it in GitHub Desktop.
Constructor Automatically Generated by Groovy
class Foo {
Long l
Long ll
}
Foo f = new Foo(l:42)
println f.l
println f.ll
Foo ff = new Foo(l:48, ll: 22);
println ff.l + ff.ll
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment