ciabatta/test/test.c

13 lines
246 B
C
Raw Normal View History

2022-06-02 13:08:59 +00:00
#include <assert.h>
#include <ctype.h>
2022-06-06 00:16:44 +00:00
#include <stdio.h>
2022-06-05 22:02:54 +00:00
#include <stdlib.h>
2022-06-06 00:26:32 +00:00
#include <errno.h>
2022-06-06 04:57:25 +00:00
#include <inttypes.h>
2022-06-05 22:02:54 +00:00
2022-06-06 04:57:25 +00:00
int main(int argc, char** argv) {
uint64_t mynumber = 4;
printf("Hello, guys %"PRIu64"\n", mynumber);
2022-06-06 04:57:25 +00:00
return 0;
2022-06-05 22:02:54 +00:00
}