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 four digit year the executable was built as the copyright date. 
  7.     function Copyright_Year return String; 
  8.  
  9. end Version;