Update (#2)
ai/code-review AI review reported findings
hello-world/pipeline/head This commit looks good

Reviewed-on: #2
Co-authored-by: John Burton <john.burton@jbmail.com>
Co-committed-by: John Burton <john.burton@jbmail.com>
This commit was merged in pull request #2.
This commit is contained in:
2026-05-03 09:15:56 +00:00
committed by john
parent e34b3570ab
commit 4973316155
+6 -2
View File
@@ -1,8 +1,12 @@
#include <iostream>
// Add six
std::string get_greeting() {
return "Hello, world!";
}
// Add the number of things.
int add_6(int cx) {
return 3 + cx;
return 6 + cx;
}
int main() {