From 826f5710ae73f6f50e91c322b63d2d5886954274 Mon Sep 17 00:00:00 2001 From: John Burton Date: Sun, 3 May 2026 09:35:22 +0100 Subject: [PATCH] Test of ai --- src/main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 54e47ec..2eeae17 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,10 @@ #include +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; }