Initial commit

This commit is contained in:
Aladdin Persson
2021-01-30 21:49:15 +01:00
commit 65b8c80495
432 changed files with 1290844 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
def func(x=1, y=2, **kwargs):
print(x, y)
print(func(x=3, y=4))