Skip to content

Instantly share code, notes, and snippets.

@altmind
Created July 19, 2012 15:55
Show Gist options
  • Select an option

  • Save altmind/3144892 to your computer and use it in GitHub Desktop.

Select an option

Save altmind/3144892 to your computer and use it in GitHub Desktop.
class Employee {
String firstName, lastName
Employee(firstName, lastName){
this.firstName=firstName
this.lastName=lastName
}
}
..
def employee = ['Bashsar','Abdul'] as Employee
Employee employee2 = ['Bashsar','Abdul']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment