mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-05 23:43:07 +00:00
13 lines
202 B
C
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);
|
||
|
|
}
|