Luna/apps/date.cpp

11 lines
135 B
C++
Raw Normal View History

2023-03-24 20:48:43 +00:00
#include <stddef.h>
#include <stdio.h>
#include <time.h>
int main()
{
time_t now = time(NULL);
fputs(ctime(&now), stdout);
}