summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/sharing_declarations/spammery.pyx
blob: 16cbda06eaa3d714f466387c78703d424ddb9ccb (plain)
1
2
3
4
5
6
7
8
9
10
11
from __future__ import print_function

from volume cimport cube

def menu(description, size):
    print(description, ":", cube(size),
          "cubic metres of spam")

menu("Entree", 1)
menu("Main course", 3)
menu("Dessert", 2)