cpplab/app/ex2.cpp

7 lines
No EOL
115 B
C++

#include <iostream>
int main(void){
std::string hello = "Hello world";
std::cout << hello;
return 5;
}