parent
e8fba977f4
commit
6a17d6994d
4 changed files with 31 additions and 29 deletions
@ -0,0 +1,28 @@ |
|||||||
|
project('elseif', 'c') |
||||||
|
|
||||||
|
t = true |
||||||
|
f = false |
||||||
|
|
||||||
|
if true |
||||||
|
message('Ok.') |
||||||
|
elif true |
||||||
|
error('Error') |
||||||
|
else |
||||||
|
error('Error') |
||||||
|
endif |
||||||
|
|
||||||
|
if f |
||||||
|
error('Error.') |
||||||
|
elif t |
||||||
|
message('Ok') |
||||||
|
else |
||||||
|
error('Error') |
||||||
|
endif |
||||||
|
|
||||||
|
if f |
||||||
|
error('Error.') |
||||||
|
elif false |
||||||
|
error('Error') |
||||||
|
else |
||||||
|
message('Ok') |
||||||
|
endif |
Loading…
Reference in new issue