Oskar Thorén a56f5eee8b Libwaku spike start (#510)
* libwaku init e2e

* basic cstring check

* wip
2021-04-28 19:13:34 +08:00

13 lines
202 B
C

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