diff options
| author | Eugen Wissner <belka@caraus.de> | 2024-10-13 12:59:47 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2024-10-13 12:59:47 +0200 |
| commit | 582040e5d3f6a5fb5b9046964b6823891d2802dd (patch) | |
| tree | 522ecf75521f03c5dbd33921cc716fd5130da0b3 /tests/vm/printi_if_not.elna | |
| parent | 0850f0a8d66af028e32a79063cdad328b70db909 (diff) | |
| download | elna-582040e5d3f6a5fb5b9046964b6823891d2802dd.tar.gz | |
Implement comparison operators
Diffstat (limited to 'tests/vm/printi_if_not.elna')
| -rw-r--r-- | tests/vm/printi_if_not.elna | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/vm/printi_if_not.elna b/tests/vm/printi_if_not.elna new file mode 100644 index 0000000..aafe182 --- /dev/null +++ b/tests/vm/printi_if_not.elna @@ -0,0 +1,6 @@ +proc main() { + if (1 # 2) + printi(3); + else + printi(5); +} |
