diff options
Diffstat (limited to 'progs')
-rw-r--r-- | progs/test.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/progs/test.py b/progs/test.py index ab0901a..72729e1 100644 --- a/progs/test.py +++ b/progs/test.py @@ -1,4 +1,4 @@ -x = 1 - -if x == 1: - print("a") +def unibo(a): + print("u") + +unibo(a) |