6 lines
82 B
C++
6 lines
82 B
C++
extern "C" void print(const char* str);
|
|
|
|
int main() {
|
|
print("Hello, World!");
|
|
}
|