You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As suggested in #96 (comment), support some syntax like @ismatch (vars=A,B,C) [10,9,8] ( ... to list the variables to be assigned at the start of the block e.g. such that unmatched or unused variables take the value missing in the following:
@ismatch (vars=A,B,C) [10,9,8] (
[A && 10|11|12 , B, C ] ||
[A && 20|21 , B, C ] ||
[A && 1|2, B && 2|3 ] # note C not defined in this alternative
)
The text was updated successfully, but these errors were encountered:
As suggested in #96 (comment), support some syntax like
@ismatch (vars=A,B,C) [10,9,8] ( ...
to list the variables to be assigned at the start of the block e.g. such that unmatched or unused variables take the valuemissing
in the following:The text was updated successfully, but these errors were encountered: