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