From b878192e410efb7327dffc82202af3d01c020ce5 Mon Sep 17 00:00:00 2001 From: Stealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Sat, 23 Nov 2024 10:41:39 +0530 Subject: [PATCH] feat: add a simple file --- math/testfile.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 math/testfile.cpp diff --git a/math/testfile.cpp b/math/testfile.cpp new file mode 100644 index 00000000000..2828f0f47bb --- /dev/null +++ b/math/testfile.cpp @@ -0,0 +1,11 @@ +#include + +int func_without_documentation(int x, int y) { + return x + y; +} + +int main() { + int x = 20; + int y = 30; + +} \ No newline at end of file