Created
July 19, 2012 15:55
-
-
Save altmind/3144892 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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