loro/crates/loro-ffi/examples/loro.cpp
2023-01-29 17:48:37 +08:00

14 lines
294 B
C++

#include <stdio.h>
extern "C" {
#include "../target/loro_ffi.h"
};
int main(void) {
LoroCore* loro = loro_new();
Text* text = loro_get_text(loro, "text");
text_insert(text, loro, 0, "abc");
char* str = text_value(text);
printf("%s", str);
text_free(text);
loro_free(loro);
}