Test of ai
hello-world/pipeline/head This commit looks good

This commit is contained in:
2026-05-03 09:35:22 +01:00
parent 10432a3e1c
commit 826f5710ae
+5 -1
View File
@@ -1,6 +1,10 @@
#include <iostream>
int add_3(int cx) {
return 2 + cx;
}
int main() {
std::cout << "Hello, world!" << std::endl;
std::cout << "Hello, world!" << add_3(5) << std::endl;
return 0;
}