From 8989d32ff545ae75ca3e777aae96fb2586a96a7f Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Sat, 15 Mar 2025 12:30:42 +0100 Subject: [PATCH] test cases --- test/bye.c | 9 +++++++++ test/hello.c | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 test/bye.c create mode 100644 test/hello.c diff --git a/test/bye.c b/test/bye.c new file mode 100644 index 0000000..46d1367 --- /dev/null +++ b/test/bye.c @@ -0,0 +1,9 @@ +#include + +int main(int argc, char *argv[]) { + int sum = 0; + for (int i = 0; i < 200000; i++) { + sum += i; + } + printf("meow %d\n", sum); +} diff --git a/test/hello.c b/test/hello.c new file mode 100644 index 0000000..c4b0d14 --- /dev/null +++ b/test/hello.c @@ -0,0 +1,5 @@ +#include + +int main(int argc, char *argv[]) { + printf("meow %d", argc); +}