Files
hello-world/src/main.cpp
T
john d22eec5c97
ai/code-review AI review reported findings
hello-world/pipeline/pr-master This commit looks good
Testing options
2026-05-03 09:51:15 +01:00

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;
}