From 582040e5d3f6a5fb5b9046964b6823891d2802dd Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Sun, 13 Oct 2024 12:59:47 +0200 Subject: Implement comparison operators --- tests/vm/printi_if_not_compound.elna | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/vm/printi_if_not_compound.elna (limited to 'tests/vm/printi_if_not_compound.elna') diff --git a/tests/vm/printi_if_not_compound.elna b/tests/vm/printi_if_not_compound.elna new file mode 100644 index 0000000..1149a35 --- /dev/null +++ b/tests/vm/printi_if_not_compound.elna @@ -0,0 +1,9 @@ +proc main() { + if (1 # 2) { + printi(3); + printi(7); + } else { + printi(5); + printi(9); + } +} -- cgit v1.2.3