6 lines
119 B
Text
6 lines
119 B
Text
enum {
|
|
Apple=3,
|
|
Banana, # gets the value 4
|
|
Cherry="a",
|
|
Orange, # gets the value "b"
|
|
};
|