8 lines
150 B
Text
8 lines
150 B
Text
def makeColor(name :String) {
|
|
def color {
|
|
to colorize(thing :String) {
|
|
return `$name $thing`
|
|
}
|
|
}
|
|
return color
|
|
}
|