diff options
author | sanine <sanine.not@pm.me> | 2022-12-30 21:22:50 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-12-30 21:22:50 -0600 |
commit | bf71f069d4861ba2285c96dd98bdf1bbe0322fc2 (patch) | |
tree | 454cdcd335a408b8a4c1c1b038b152363335dcc2 /example | |
parent | b8c647c9250b514a5daa11ea731691b19944aa4e (diff) |
begin documentation and add lily_begin() and lily_finish()
Diffstat (limited to 'example')
-rw-r--r-- | example/sum.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/example/sum.c b/example/sum.c index d9d1221..645ed8e 100644 --- a/example/sum.c +++ b/example/sum.c @@ -24,6 +24,8 @@ LILY_TEST("sums are correct") int main() { + lily_begin(); sum_suite(); + lily_finish(); return 0; } |