blob: 25e7af1dc71b9ba1921dc91925cbd342979179cd [file] [log] [blame]
@Category(Vehicle)
class DivingAbility {
def dive() { "I'm the ${name<caret>} and I dive!" }
}
interface Vehicle {
String getName()
}