mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:18:11 +00:00
10 lines
150 B
C++
10 lines
150 B
C++
#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;
|
|
}
|
|
|