diff options
Diffstat (limited to 'tests/source/test7.scade')
-rw-r--r-- | tests/source/test7.scade | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/source/test7.scade b/tests/source/test7.scade new file mode 100644 index 0000000..c756a9e --- /dev/null +++ b/tests/source/test7.scade @@ -0,0 +1,7 @@ +node test(i: int) returns(a, b, probe c: int; exit: bool) +let + a = 0; + b = 0; + c = 0 -> (pre c + 1); + exit = i >= 5; +tel |