mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 06:37:52 +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;
|
|
}
|
|
|