catala/tests/test_bool/test_bool.catala
2020-12-29 22:26:10 +01:00

13 lines
186 B
Plaintext

@Article@
/*
new scope TestBool :
param foo content bool
param bar content int
scope TestBool :
def bar := 1
def foo [| bar >= 0 |] := true
def foo [| bar < 0 |] := false
*/