mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-12 21:48:25 +03:00
13 lines
186 B
Plaintext
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
|
|
*/
|