summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorL0P0P <grassoemanuele@live.com>2024-06-26 11:44:58 +0200
committerL0P0P <grassoemanuele@live.com>2024-06-26 11:44:58 +0200
commit9e6c17cb44bc165e315ec039a0e09183716d2037 (patch)
tree4a64fd37fa9b2483b88a5f33a37c6b9b51812d81 /progs
parentfc712f94a7ed8554d8d44f4965be367354a7e670 (diff)
Semantic check for function declaration and function invocation
Diffstat (limited to 'progs')
-rw-r--r--progs/test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/progs/test.py b/progs/test.py
index 72729e1..97e316f 100644
--- a/progs/test.py
+++ b/progs/test.py
@@ -1,4 +1,6 @@
def unibo(a):
- print("u")
+ if a == 3:
+ print("UNIBO")
+a = 3
unibo(a)