2020-06-09 18:13:25 +03:00
|
|
|
/*
|
2020-08-04 11:30:35 +03:00
|
|
|
declaration scope TestBool :
|
|
|
|
context foo content bool
|
|
|
|
context bar content int
|
2020-06-09 18:13:25 +03:00
|
|
|
|
2020-08-04 11:30:35 +03:00
|
|
|
scope TestBool :
|
|
|
|
def bar = 1
|
|
|
|
def foo ? bar >= 0 ~= true
|
|
|
|
def foo ? bar < 0 ~= false
|
|
|
|
*/
|