16 lines
241 B
C
16 lines
241 B
C
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
time_t currenttime;
|
|
|
|
int main() {
|
|
/*while(1) {
|
|
currenttime = time(NULL);
|
|
printf("%ld\n",currenttime);
|
|
}*/
|
|
int bruh = 342;
|
|
if (bruh) {
|
|
printf("bruh");
|
|
}
|
|
}
|