Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
var x = date.ToString("HH:mm:ss");
integer, dimension(8) :: d
character (len=8) :: x
call date_and_time (values=d)
write (unit=x,fmt='(I2.2,":",I2.2,":",I2.2)') d(5), d(6), d(7)
const d = new Date();
let hr = d.getHours();
let min = d.getMinutes();
let sec = d.getSeconds();
if ( hr.toString().length === 1 ) {
hr = '0' + hr;
}
if ( min.toString().length === 1 ) {
min = '0' + min;
}
if ( sec.toString().length === 1 ) {
sec = '0' + sec;
}
const x = '' + hr + ':' + min + ':' + sec;
(defvar *x* (format NIL "~2,'0D:~2,'0D:~2,'0D" 12 34 56))
$x = $d->format('H:i:s');
d = Time.now
x = d.strftime("%H:%M:%S")
(define d (current-date))
(define x (substring (date-and-time d) 11 19))