Compare commits

..

1 Commits

Author SHA1 Message Date
Irina Rueegg
151f30987d feat: add Code Wars testfunction 'CWtest' 2026-02-25 19:52:26 +01:00

6
src/CWtest.py Normal file
View File

@ -0,0 +1,6 @@
def greet(name):
return f"Hello, {name} how are you doing today?"
if __name__ == "__main__":
print(greet("John"))