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