cpp-cheat/cpp/hello_world.cpp
2015-06-12 12:34:21 +02:00

6 lines
81 B
C++

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