Files
kotlin-fork/native/native.tests/testData/CInterop/executable/auxiliarySources/auxiliarySources.cpp
T
2023-12-04 08:43:28 +00:00

8 lines
147 B
C++
Vendored

#include <string>
#include "auxiliarySources.aux.h"
static std::string _name = "Hello from C++";
const char* name() {
return _name.c_str();
}