#include<u.h>
#include<libc.h>
/* An implementation of RFC 3339, a profile of ISO 8601; */
void
main(){
Tm* now = gmtime(time(nil));
print("%d-%.2d-%.2dT%.2d:%.2d:%.2dZ\n",
now-> year+1900, now->mon+1, now->mday, now->hour, now->min, now->sec);
exits(nil);
}
|