10 lines
241 B
Plaintext
10 lines
241 B
Plaintext
class Greet {
|
|
def name
|
|
Greet(who) { name = who[0].toUpperCase() +
|
|
who[1..-1] }
|
|
def salute() { println "Hello $name!" }
|
|
}
|
|
|
|
g = new Greet('world') // create object
|
|
g.salute() // output "Hello World!"
|