summaryrefslogtreecommitdiff
path: root/funcs.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-05-17 09:36:19 +0300
committerLars Wirzenius <liw@liw.fi>2019-05-17 09:36:19 +0300
commit5893afdacd1b8f37c5d8aee8ade71064747dda27 (patch)
tree4d69a4f3392315c59d43960d74b67cf2e619f410 /funcs.py
parent99e0c83f98f56e26725ac86bcf1569e5ba012178 (diff)
downloadsaga-poc-5893afdacd1b8f37c5d8aee8ade71064747dda27.tar.gz
Add: example proof-of-concept code generation
Diffstat (limited to 'funcs.py')
-rw-r--r--funcs.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/funcs.py b/funcs.py
new file mode 100644
index 0000000..73b11a0
--- /dev/null
+++ b/funcs.py
@@ -0,0 +1,8 @@
+def given_precondition(**kwargs):
+ print('precondition:', kwargs)
+
+def do(**kwargs):
+ print('do:', kwargs)
+
+def is_fine(**kwargs):
+ print('is_fine:', kwargs)