If Else in Chapel
Branching with if
and else
in Chapel is straightforward.
Note that you don’t need parentheses around conditions in Chapel, but the braces are required.
To run the program:
Chapel doesn’t have a ternary operator, so you’ll need to use a full if
statement even for basic conditions.