diff options
| author | ruki <[email protected]> | 2024-11-25 22:38:26 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-11-25 22:38:26 +0800 |
| commit | 8b3be6b7ffb9c006e013a121de3aaa9e5faa9986 (patch) | |
| tree | 265fa8a99daf19fb6c3c9950664fe5dc00745536 /tests/projects/package/toolchain_msvc/src | |
| parent | 6227615261ce6c2109c0c8324a83b582b25bd337 (diff) | |
add msvc toolchain test
Diffstat (limited to 'tests/projects/package/toolchain_msvc/src')
| -rw-r--r-- | tests/projects/package/toolchain_msvc/src/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/projects/package/toolchain_msvc/src/main.c b/tests/projects/package/toolchain_msvc/src/main.c new file mode 100644 index 000000000..9ae580511 --- /dev/null +++ b/tests/projects/package/toolchain_msvc/src/main.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main(int argc, char** argv) +{ + printf("hello world!\n"); + return 0; +} |
