aboutsummaryrefslogtreecommitdiff
path: root/lib/typst/example.c
blob: 39e7a0658911965b30af78c3048c33a16ca9fe70 (plain)
1
2
3
4
5
6
7
8
9
#include "typst.h"
#include <stdio.h>

int main() {
    const char* res = typst_generateSVG("Hello world");
    printf("%s\n", res);
    typst_freeString(res);
    return 0;
}