changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / tests/demo_test.c

changeset 8: bebb76da449c
author: ellis <ellis@rwest.io>
date: Sun, 07 May 2023 20:42:26 -0400
permissions: -rw-r--r--
description: tests and stuff
1 #include <stdio.h>
2 #include "demo.h"
3 
4 int main() {
5  Service *srv = service_from_string("weather");
6  printf!("%s\n",service_to_json_str(srv));
7  free_service(srv);
8 }