mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-08 20:27:27 +01:00
8 lines
135 B
C++
8 lines
135 B
C++
#include <iostream>
|
|
|
|
int main( int argc, char * argv[] )
|
|
{
|
|
std::cout << "Hello cross-compilation world!" << std::endl;
|
|
return 0;
|
|
}
|