Making a clock show the system time

I'm making a clock and want it to show the system time of whatever computer the game is running on. Could anyone give me a pointer on how to do this?

This was a piece of javescript that I was using to grab the date once a long time ago I modified it to do the time.

This Link will give you all the different ways you can use System.DateTime in a string

http://www.geekzilla.co.uk/View00FF7904-B510-468C-A2C8-F859AA20581F.htm

//sets something to record the date and time
var date : System.DateTime;

//sets something allowing you to populate it with the date and time
var text : String;


function Update()
{
	//tells the var to look for the precise moment you are at
	var date = System.DateTime.Now;
	//converts the above var to a readable string
	text = date.ToString("HH:mm:ss");
	//prints it to inspector
	print (text);
	
}

Are you using C#? As long as you are using System you should have access to the DateTime libraries.