
def w(func):
    def wrapper():           # This function is LOCAL to w( )
        print("Started")
        func()
        print("Ended")

    return wrapper     	     # Returns a function !


def f1():
    print("Hello")

f2 = w(f1)      # Pass f1 to w() and receive a NEW function f2
f2()		# Call the new function f2()
