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!”
[Validate]
Generated with the Darkfish Rdoc Generator 2.