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