19 lines
421 B
JSON
19 lines
421 B
JSON
{
|
|
"version": 1,
|
|
"context": { "n": 0 },
|
|
"roots": [
|
|
{
|
|
"kind": "if",
|
|
"condition": "this.n > 0",
|
|
"consequent": [{ "kind": "runScript", "method": "return 'pos';" }],
|
|
"elseIfBlocks": [
|
|
{
|
|
"condition": "this.n < 0",
|
|
"consequent": [{ "kind": "runScript", "method": "return 'neg';" }]
|
|
}
|
|
],
|
|
"alternate": [{ "kind": "runScript", "method": "return 'zero';" }]
|
|
}
|
|
]
|
|
}
|