commit message from python script

This commit is contained in:
2024-03-13 21:54:54 +01:00
parent f06f7a567c
commit 68c7217ada

4
funktional/test.py Normal file
View File

@@ -0,0 +1,4 @@
def square(nums):
return [ x*x for x in range(nums) ]
print(square(9))