aboutsummaryrefslogtreecommitdiff
path: root/typst/example.c
blob: a1df659fb1e0436cc7428ed1f8f21ac3b515a3e8 (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_freeSVG(res);
    return 0;
}