(timestamp>rfc3339) ( timestamp -- )


Vocabulary
calendar.format

Definition
USING: accessors calendar.format.macros ;

IN: calendar.format

: (timestamp>rfc3339) ( timestamp -- )
{
YYYY
"-"
MM
"-"
DD
"T"
hh
":"
mm
":"
ss
[ gmt-offset>> write-rfc3339-gmt-offset ]
} formatted ;