mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 19:59:05 +08:00
9 lines
99 B
C++
9 lines
99 B
C++
#include <stdio.h>
|
|
|
|
extern const char* getTestString();
|
|
|
|
int main()
|
|
{
|
|
puts(getTestString());
|
|
}
|