catala/tests/test_bool/test_bool.catala
2020-08-04 12:38:49 +02:00

11 lines
177 B
Plaintext

/*
declaration scope TestBool :
context foo content bool
context bar content int
scope TestBool :
def bar = 1
def foo ? bar >= 0 |= true
def foo ? bar < 0 |= false
*/