Prog3B_Projekt/hello_world.c

9 lines
97 B
C

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