diff --git a/tooling/test.cpp b/tooling/test.cpp new file mode 100644 index 00000000..83ec1e61 --- /dev/null +++ b/tooling/test.cpp @@ -0,0 +1,20 @@ +#include + +int add(int a, int b) { + return a + b; +} + +void greet(const std::string& name) { + std::cout << "Hello, " << name << "!" << std::endl; +} + +int main() { + int x = 5; + int y = 10; + int result = add(x, y); + + greet("World"); + + std::cout << "Result: " << result << std::endl; + return 0; +} \ No newline at end of file