diff options
Diffstat (limited to 'Code/Python/func_abc.py')
-rwxr-xr-x | Code/Python/func_abc.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Code/Python/func_abc.py b/Code/Python/func_abc.py new file mode 100755 index 0000000000000..0d4919fb89307 --- /dev/null +++ b/Code/Python/func_abc.py @@ -0,0 +1,19 @@ +#!/usr/bin/python + +import time + +def func_c(): + print "Function C" + time.sleep(1) + +def func_b(): + print "Function B" + time.sleep(1) + func_c() + +def func_a(): + print "Function A" + time.sleep(1) + func_b() + +func_a() |