diff --git a/funktional/test.py b/funktional/test.py new file mode 100644 index 0000000..f897fd4 --- /dev/null +++ b/funktional/test.py @@ -0,0 +1,4 @@ +def square(nums): + return [ x*x for x in range(nums) ] + +print(square(9)) \ No newline at end of file