-- Chapter 5 - Program 5 with Ada.Text_IO; use Ada.Text_IO; procedure GoToDemo is begin goto Some_Place; <> Put_Line("I am now at the There place."); goto Stop_This_Mess; <> Put_Line("I am now at the Where place."); goto There; <> Put_Line("I am now Some_Place."); goto Where; <> Put_Line("I am now about to end this mess."); end GoToDemo; -- Result of execution -- I am now Some_Place. -- I am now at the Where place. -- I am now at the There place. -- I am now about to end this mess.