7 lines
No EOL
115 B
C++
7 lines
No EOL
115 B
C++
#include <iostream>
|
|
|
|
int main(void){
|
|
std::string hello = "Hello world";
|
|
std::cout << hello;
|
|
return 5;
|
|
} |