amigaos-cross-toolchain/examples/hello-iostream.cpp

8 lines
92 B
C++

#include <iostream>
int main()
{
std::cout << "hello world!" << std::endl;
return 0;
}