loro/crates/loro-ffi/examples/loro.cpp

15 lines
294 B
C++
Raw Normal View History

2023-01-28 11:59:37 +00:00
#include <stdio.h>
extern "C" {
2023-01-28 11:59:37 +00:00
#include "../target/loro_ffi.h"
2023-01-28 11:59:37 +00:00
};
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);
}