Files
amigaos-cross-toolchain6/examples/hello-iostream.cpp
T
2015-09-08 10:28:55 +02:00

8 lines
92 B
C++

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