Files
IBAFLang/IBAF-cbs/Funcons-beta/Values/Composite/Trees/tests/forest-value-sequence.config
2023-11-01 09:29:33 +01:00

21 lines
335 B
Plaintext

general {
funcon-term:
initialise-giving finalise-failing
sequential (
print [forest-value-sequence
(tree(1),
tree(2,tree(3)),
tree(4),
tree(5,tree(6),tree(7)))
]
)
;
}
tests {
result-term: null-value;
standard-out: [
[1,2,3,4,5,6,7]
];
}