# Author: James Tam # Version: July 17, 2020 # Learning: determining the order of execution # multiple functions have been defined. # @fun1(none) # @returns(nothing) def fun1(): print("—Kurt Vonnegut") # @fun2(none) # @returns(nothing) def fun2(): print("raise my hand.'") # @fun3(none) # @returns(nothing) def fun3(): print("'Those who believe" \ + "in telekinetics, ") ############################ # Starting execution point # ############################ def start(): fun3() fun2() fun1() start()