mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 21:28:40 +00:00
13 lines
190 B
C++
13 lines
190 B
C++
#include <LibC/time.h>
|
|
#include <LibC/stdio.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
(void) argc;
|
|
(void) argv;
|
|
time_t now = time(nullptr);
|
|
printf("%u\n", now);
|
|
return 0;
|
|
}
|
|
|