Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Person {
- String firstName
- String lastName
- def getLastName(){
- lastName.toUpperCase()
- }
- }
- //Constructor with named arguments
- def person3 = new Person(firstName: 'Eddard', lastName: 'Stark')
- assert "${person3.firstName} ${person3.lastName}" == "Eddard STARK"
-
Advertisement
Add Comment
Please, Sign In to add comment