diff --git a/python-temel/other_foo.3.py b/python-temel/other_foo.3.py new file mode 100644 index 0000000..37445b3 --- /dev/null +++ b/python-temel/other_foo.3.py @@ -0,0 +1,7 @@ +def foo(): + print('foo') + +bar = foo + +foo() +bar()