diff options
author | L0P0P <grassoemanuele@live.com> | 2024-06-26 10:06:12 +0200 |
---|---|---|
committer | L0P0P <grassoemanuele@live.com> | 2024-06-26 10:06:12 +0200 |
commit | fc712f94a7ed8554d8d44f4965be367354a7e670 (patch) | |
tree | 46345272a4cbbc6cc7c868e1bf9288bb44dbfc7f /progs | |
parent | 9bb71e36feb60d886f1eb04f03daaa7bcf343355 (diff) |
Using child
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) |