fprintf (stdout, "\n\nThis is an example of a utility script that the user can place in 'UserAddins' and access via a simple button click.\n");

GetString (versionString, HYPHY_VERSION, 1);
GetString (dateString, TIME_STAMP, 1);
GetString (gmtString,  TIME_STAMP, 0);
fprintf (stdout, "HyPhy version:", versionString, "\n", 
				 "Current time:", dateString, "\n",
				 "GMT     time:", gmtString, "\n",
				 "Base Directory:", HYPHY_LIB_DIRECTORY, "\n");

fprintf (stdout, "\nObject counts:\n",
				  "\tVariables              : ",Rows("Variable"),
				  "\n\tData Sets              : ",Rows("DataSet"),
				  "\n\tData Filters           : ",Rows("DataSetFilter"),
				  "\n\tTrees                  : ",Rows("Tree"),
				  "\n\tLikelihood Functions   : ",Rows("LikelihoodFunction"),
				  "\n\tUser Defined Functions : ",Rows("UserFunction"), "\n");
					  
