9 lines
145 B
C
9 lines
145 B
C
|
#include <inttypes.h>
|
||
|
#include <stdio.h>
|
||
|
#include "c_kzg_4844.h"
|
||
|
|
||
|
uint64_t hello(uint64_t a) {
|
||
|
printf("Hello World! %lu\n", a);
|
||
|
return 42;
|
||
|
}
|