# Author: James Tam # Version: February 10, 2010 # Example illustrating how to include all instructions (save # constant creation and the initial function call) inside # a function # @ displayInstructions(none) # @ returns(nothing) def displayInstructions(): print("Displaying instructions") # @ start(none) # @ returns(nothing) def start(): displayInstructions() print("End of program") start()