1
0
mirror of https://github.com/waku-org/nwaku.git synced 2025-02-03 10:35:04 +00:00
nwaku/wrappers/wrapper_example.c
Oskar Thorén be717ce5f3
Improve libwaku and C wrappers ()
- Move stuff to Makefile
- Move libwaku to root
- Make examples compile for C and Go
- Update README
2021-06-13 20:50:10 +08:00

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);
}