From 57bc30a39c0a43b1e3fa0b37b599864181df1ec4 Mon Sep 17 00:00:00 2001 From: serr Date: Sun, 30 Mar 2025 22:08:37 +0300 Subject: [PATCH] test file added --- .gitignore | 3 +-- analyzers/cpl/test.cpl | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 analyzers/cpl/test.cpl diff --git a/.gitignore b/.gitignore index 2a57182..adb36c8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -*.exe -*test* \ No newline at end of file +*.exe \ No newline at end of file diff --git a/analyzers/cpl/test.cpl b/analyzers/cpl/test.cpl new file mode 100644 index 0000000..8aa38a1 --- /dev/null +++ b/analyzers/cpl/test.cpl @@ -0,0 +1,22 @@ +{ + PIMPUMPUMpam = 5; + per__emennaya = 3; + + PIMPUMPUMpam = PIMPUMPUMpam + (per__emennaya - 1); + + x = 10+1-2;;;; + y = ++-+20; + + if (++---x > y) { + print x * !x; + } else { + print y; + } + + while (x > 123 || (x < 1 || x > 10) && x == 5) { + {x = x + 1;} + x = x % 3; + } + + return 0; +} \ No newline at end of file