yggdrasil/test.c

10 lines
133 B
C
Raw Normal View History

2024-11-11 15:19:36 +02:00
#include <unistd.h>
#include <stdio.h>
2024-11-11 23:50:38 +02:00
#include <string.h>
#include <assert.h>
2024-11-11 15:19:36 +02:00
int main() {
2024-11-11 23:50:38 +02:00
printf("Hello!\n");
2024-11-11 15:19:36 +02:00
return 0;
}