summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/language_basics/struct.py
blob: 32b6b252afe5965ff27663b4d57c4794f92cc239 (plain)
1
2
3
4
5
6
7
Grail = cython.struct(
    age=cython.int,
    volume=cython.float)

def main():
    grail: Grail = Grail(5, 3.0)
    print(grail.age, grail.volume)