1 2 3 4 5
#include <iostream> extern "C" void hello_rust(void); int main() { std::cout << "This is C++!\n"; hello_rust(); }