blob: ccbc28d42f877a2a4170280ff97b41937da62815 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
cdef struct Grail:
int age
float volume
cdef union Food:
char *spam
float *eggs
cdef enum CheeseType:
cheddar, edam,
camembert
cdef enum CheeseState:
hard = 1
soft = 2
runny = 3
|