From 0c2abb14d1b06ef126c89ba60fdeaa4a0225a140 Mon Sep 17 00:00:00 2001 From: Westsi <76999267+Westsi@users.noreply.github.com> Date: Tue, 2 Jul 2024 07:38:52 -0400 Subject: [PATCH] added test --- ci/test/arithmetic.dor | 6 ++++++ ci/test/metadata.tests | 1 + 2 files changed, 7 insertions(+) create mode 100644 ci/test/arithmetic.dor diff --git a/ci/test/arithmetic.dor b/ci/test/arithmetic.dor new file mode 100644 index 0000000..ac80e16 --- /dev/null +++ b/ci/test/arithmetic.dor @@ -0,0 +1,6 @@ +int main() { + int x = 3 + int y = 8 + int z = x * y + 2 + return z +} \ No newline at end of file diff --git a/ci/test/metadata.tests b/ci/test/metadata.tests index 400038a..e8daa68 100644 --- a/ci/test/metadata.tests +++ b/ci/test/metadata.tests @@ -1,2 +1,3 @@ return:0 varret:3 +arithmetic:26