summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/sharing_declarations/restaurant.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/userguide/sharing_declarations/restaurant.py')
-rw-r--r--docs/examples/userguide/sharing_declarations/restaurant.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/examples/userguide/sharing_declarations/restaurant.py b/docs/examples/userguide/sharing_declarations/restaurant.py
new file mode 100644
index 000000000..b4bdb2eba
--- /dev/null
+++ b/docs/examples/userguide/sharing_declarations/restaurant.py
@@ -0,0 +1,12 @@
+import cython
+from cython.cimports.dishes import spamdish, sausage
+
+@cython.cfunc
+def prepare(d: cython.pointer(spamdish)) -> cython.void:
+ d.oz_of_spam = 42
+ d.filler = sausage
+
+def serve():
+ d: spamdish
+ prepare(cython.address(d))
+ print(f'{d.oz_of_spam} oz spam, filler no. {d.filler}')