Intro-to-Jinja-tpl-v2/inner_functions.py

12 lines
228 B
Python

def parent():
print("Printing from parent()")
def first_child():
print("Printing from first_child()")
def second_child():
print("Printing from second_child()")
second_child()
first_child()