1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00

Fix bool_or.code test

This commit is contained in:
Tjaden Hess 2018-10-31 18:15:57 -04:00
parent 0f777ae65d
commit 36a49d8a23

View file

@ -1,7 +1,7 @@
// example using if-then-else-fi with ||
def main(field a, field b) -> (field):
field y = if x + 2 == 4 || x * 2 == 2 then 1 else 0 fi
field z = if y == 1 || y == 0 then y else 1
field z = if y == 1 || y == 0 then y else 1 fi
z == 1
return z