This commit is contained in:
2024-02-21 15:08:01 +01:00
parent b6949f6a73
commit b388a6a95c
11 changed files with 31 additions and 8 deletions

View File

@ -1,4 +1,4 @@
hello|
set 2 -> x|
do print<variable x;>|
set 2 -> z|
do print<variable z;>|
goodbye|

View File

@ -1,3 +1,4 @@
7
5
5 6
15

View File

@ -5,4 +5,7 @@ set 5 -> y if variable x = 7|
do print<variable y;>|
set set 5 -> z + 1 -> a|
do print<variable z; variable a;>|
set 15 -> x if variable x+3>2*2+5|
set 1 -> x if variable x+3<2*2+5|
do print<variable x;>|
goodbye|

1
tests/16_E004.expected Normal file
View File

@ -0,0 +1 @@
E004: Random compiler error

4
tests/16_E004.plthy Normal file
View File

@ -0,0 +1,4 @@
hello|
set 2 -> x|
do print<variable x;>|
goodbye|