9 lines
73 B
Plaintext
9 lines
73 B
Plaintext
Animal :: enum {
|
|
dog
|
|
cat
|
|
}
|
|
|
|
favorite :: func() Animal {
|
|
return .cat
|
|
}
|