emsApplication/3rdPartner/libhv/unittest/defer_test.cpp

20 lines
231 B
C++
Raw Normal View History

2024-05-24 12:19:45 +08:00
#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;
}