Files
hello-world/src/main.cpp
T
john 826f5710ae
hello-world/pipeline/head This commit looks good
Test of ai
2026-05-03 09:35:22 +01:00

11 lines
149 B
C++

#include <iostream>
int add_3(int cx) {
return 2 + cx;
}
int main() {
std::cout << "Hello, world!" << add_3(5) << std::endl;
return 0;
}