mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-09 01:35:56 +03:00
11 lines
177 B
Plaintext
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
|
|
*/
|