mirror of
https://github.com/sigmasternchen/libparcival
synced 2025-03-15 03:48:55 +00:00
15 lines
193 B
C
15 lines
193 B
C
#include <stdio.h>
|
|
|
|
#include <templates.h>
|
|
|
|
int main() {
|
|
char *names[] = {
|
|
"foo",
|
|
"bar",
|
|
"foobar"
|
|
};
|
|
|
|
renderTemplate("demo.html.templ", stdout, "User-List", names, 3);
|
|
|
|
return 0;
|
|
}
|