1. package Version is 
  2.  
  3.     -- Returns release version which has three components: major.minor.bugfix 
  4.     function Release return String; 
  5.  
  6.     -- Returns the copyright date as the four digit year the executable was built. 
  7.     function Copyright_Year return String; 
  8.  
  9. end Version;