Provoke changes
ai/code-review AI review reported findings
hello-world/pipeline/pr-master This commit looks good

This commit is contained in:
2026-05-03 09:47:44 +01:00
parent a791e4c15c
commit 5db8dd5bc7
+4 -3
View File
@@ -1,10 +1,11 @@
#include <iostream>
int add_3(int cx) {
return 2 + cx;
// Add six
int add_6(int cx) {
return 3 + cx;
}
int main() {
std::cout << "Hello, world!" << add_3(5) << std::endl;
std::cout << "Hello, world!" << add_6(5) << std::endl;
return 0;
}