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