changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > demo / tests/demo_test.c

revision 8: bebb76da449c
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/tests/demo_test.c	Sun May 07 20:42:26 2023 -0400
     1.3@@ -0,0 +1,8 @@
     1.4+#include <stdio.h>
     1.5+#include "demo.h"
     1.6+
     1.7+int main() {
     1.8+  Service *srv = service_from_string("weather");
     1.9+  printf!("%s\n",service_to_json_str(srv));
    1.10+  free_service(srv);
    1.11+}