Prog3/hello_world.c

8 lines
96 B
C

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