18 lines
425 B
Groovy
18 lines
425 B
Groovy
class Begruessungsliste {
|
|
def namen = []
|
|
|
|
def addNames(String... neueNamen) {
|
|
neueNamen.each {namen << it}
|
|
neueNamen.each { println "${it} wurde zur Begrüßungsliste hinzugefügt."}
|
|
}
|
|
|
|
def showList() {
|
|
println "Aktuelle Begrüßungsliste: "
|
|
namen.each { println "- ${it}"}
|
|
}
|
|
}
|
|
|
|
Begruessungsliste list = new Begruessungsliste()
|
|
list.addNames("Karl", "Tom")
|
|
list.showList()
|