R.Version returns a list with character-string components
platformthe platform for which R was built.  A triplet of the
   form CPU-VENDOR-OS, as determined by the configure script.  E.g,
   "i686-unknown-linux-gnu" or "i386-pc-mingw32".
  archthe architecture (CPU) R was built on/for.
  osthe underlying operating system.
  systemCPU and OS, separated by a comma.
  statusthe status of the version (e.g., "alpha")
  majorthe major version number
  minorthe minor version number, including the patchlevel
  yearthe year the version was released
  monththe month the version was released
  daythe day the version was released
  svn revthe Subversion revision number, which should be either
    "unknown" or a single number. (A range of numbers or a number
    with M or S appended indicates inconsistencies in the
    sources used to build this version of R.)
  languagealways "R".
  version.stringa
    character string concatenating some of the info above,
    useful for plotting, etc.
  R.version and version are lists of class
  "simple.list" which has a print method.