Show the epoch: Difference between revisions

Content deleted Content added
Sonia (talk | contribs)
→‎{{header|Go}}: new epoch with Go 1
→‎{{header|PowerShell}}: Added PureBasic
Line 300: Line 300:
Output:
Output:
<pre>Monday, January 01, 0001 12:00:00 AM</pre>
<pre>Monday, January 01, 0001 12:00:00 AM</pre>
=={{header|PureBasic}}==
<lang purebasic>If OpenConsole()
PrintN(FormatDate("Y = %yyyy M = %mm D = %dd, %hh:%ii:%ss", 0))
Print(#CRLF$ + #CRLF$ + "Press ENTER to exit"): Input()
CloseConsole()
EndIf</lang>
Sample output:
<pre>Y = 1970 M = 01 D = 01, 00:00:00</pre>


=={{header|Python}}==
=={{header|Python}}==