E/else keyword
The
E
/
else
keyword is used only in conjunction with other keywords:
I
/if
:
I <condition>
...
E
...
S
/switch
:
S <expression>
<constant expression 1>
<statements 1>
<constant expression 2>
<statements 2>
...
E
<default statements>
V
/var
:
V& el = map.get(key) E
print(‘Key <’key‘> is not found!’)
R