From 4973316155497b769447f2a77f0a355f735035f2 Mon Sep 17 00:00:00 2001 From: John Burton Date: Sun, 3 May 2026 09:15:56 +0000 Subject: [PATCH] Update (#2) Reviewed-on: https://git.jb9.uk/john/hello-world/pulls/2 Co-authored-by: John Burton Co-committed-by: John Burton --- src/main.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 38350d2..1739d77 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,8 +1,12 @@ #include -// 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() {