summaryrefslogtreecommitdiff
path: root/test/local.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/local.py')
-rw-r--r--test/local.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/local.py b/test/local.py
new file mode 100644
index 0000000..7d55715
--- /dev/null
+++ b/test/local.py
@@ -0,0 +1,8 @@
+
+n = 2
+
+def calc(x):
+ m = 4
+ return x * n + m
+
+calc(3)