7 lines
125 B
Text
7 lines
125 B
Text
|
let style_evaluation =
|
||
|
match (hair_color) {
|
||
|
| Red -> Good
|
||
|
| Yellow -> Good
|
||
|
| Brown -> Good
|
||
|
| _ -> Good
|
||
|
}
|