16 lines
238 B
C++
16 lines
238 B
C++
#include <iostream>
|
|
|
|
std::string get_greeting() {
|
|
return "Hello, world!";
|
|
}
|
|
|
|
// Add the number of things.
|
|
int add_6(int cx) {
|
|
return 6 + cx;
|
|
}
|
|
|
|
int main() {
|
|
std::cout << "Hello, world!" << add_6(5) << std::endl;
|
|
return 0;
|
|
}
|