mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
11 lines
150 B
C++
11 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;
|
||
|
|
}
|
||
|
|
|