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