ladybird/Userland/date.cpp

11 lines
150 B
C++
Raw Normal View History

#include <LibC/time.h>
#include <LibC/stdio.h>
int main(int c, char** v)
{
time_t now = time(nullptr);
printf("%u\n", now);
return 0;
}