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

12 lines
228 B
Python
Raw Normal View History

2024-02-13 12:30:45 +00:00
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()