diff options
Diffstat (limited to 'test/local.py')
-rw-r--r-- | test/local.py | 8 |
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) |