mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-09 14:26:27 +00:00
be717ce5f3
- Move stuff to Makefile - Move libwaku to root - Make examples compile for C and Go - Update README
15 lines
219 B
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);
|
|
}
|