summaryrefslogtreecommitdiff
path: root/progs/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/test.py')
-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)