Show the epoch: Difference between revisions

Content deleted Content added
added Dart version
No edit summary
Line 85: Line 85:
Output:
Output:
<pre>1400-Jan-01 00:00:00</pre>
<pre>1400-Jan-01 00:00:00</pre>


=={{header|C#}}==
<lang CSharp>using System;

namespace RosettaCode
{
class Epoc
{
static void Main(string[] args)
{
System.DateTime d = new System.DateTime(1970, 1, 1);
System.Console.WriteLine(d);
}
}
}
</lang>


=={{header|Common Lisp}}==
=={{header|Common Lisp}}==