2023-01-06 12:31:14 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2023-01-06 23:21:08 +00:00
|
|
|
#include <time.h>
|
2023-01-06 12:31:14 +00:00
|
|
|
|
2023-01-06 18:40:25 +00:00
|
|
|
void bye()
|
|
|
|
{
|
2023-01-07 00:49:26 +00:00
|
|
|
printf("byeee!\n");
|
2023-01-06 18:40:25 +00:00
|
|
|
}
|
|
|
|
|
2023-01-06 12:31:14 +00:00
|
|
|
int main()
|
|
|
|
{
|
2023-01-06 18:40:25 +00:00
|
|
|
atexit(bye);
|
2023-01-07 00:49:26 +00:00
|
|
|
printf("Welcome to %s!\n", "Luna");
|
2023-01-06 19:15:43 +00:00
|
|
|
|
2023-01-06 23:27:23 +00:00
|
|
|
time_t now = time(NULL);
|
2023-01-07 00:49:26 +00:00
|
|
|
printf("Realtime clock: %ld s\n", now);
|
2023-01-06 23:21:08 +00:00
|
|
|
|
2023-01-07 00:49:26 +00:00
|
|
|
for (int i = 0; i < atoi("8"); i++) { console_write(".", 1); }
|
2023-01-06 12:31:14 +00:00
|
|
|
|
2023-01-07 00:49:26 +00:00
|
|
|
console_write("\n", 1);
|
2023-01-06 12:31:14 +00:00
|
|
|
}
|