Department of Computer Science | Institute of Theoretical Computer Science | CADMO

Theory of Combinatorial Algorithms

Prof. Emo Welzl and Prof. Bernd Gärtner

// Program: hello_world.cpp // Print out "Hello World!" #include int main() { // output some text std::cout << "Hello World!" << std::endl; return 0; }