diff options
author | geno <gabriele.genovese2@studio.unibo.it> | 2024-07-16 10:40:10 +0200 |
---|---|---|
committer | geno <gabriele.genovese2@studio.unibo.it> | 2024-07-16 10:40:10 +0200 |
commit | 0f6ba6b9ae7781715fc90db8d261bbdaf6a6411b (patch) | |
tree | 34b32d8160493291e816d9c6b98806098a6de8dd | |
parent | f810564cc4d3a6932fc813f10518d034aa8c1145 (diff) |
local.py test added
-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) |