python-CSD-kursu/python-temel/function.8.py

8 lines
53 B
Python

def foo():
print('foo');
bar = foo
foo()
bar()