nwaku/wrappers/wrapper_example.c

15 lines
219 B
C

#include <stdio.h>
#include <stddef.h>
#include "libwaku.h"
void NimMain();
int main(int argc, char* argv[]) {
char* string;
NimMain();
//echo();
string = info("hello there");
printf("Info: %s", string);
}