initial commit

This commit is contained in:
2025-08-05 15:53:44 +08:00
commit 09dc02ae52
553 changed files with 137665 additions and 0 deletions

19
third_party/libhv/unittest/defer_test.cpp vendored Executable file
View File

@@ -0,0 +1,19 @@
#include <stdio.h>
#include "hscope.h"
int main() {
defer (
printf("1\n");
printf("2\n");
)
defer (
printf("3\n");
printf("4\n");
)
defer(printf("hello\n");)
return 0;
}