summaryrefslogtreecommitdiffstats
path: root/progs/test.py
blob: 97e316f8f566a25890f569aaa7b83418b53196b5 (plain)
1
2
3
4
5
6
def unibo(a):
    if a == 3:
        print("UNIBO")
    
a = 3
unibo(a)