mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
119 B
D
14 lines
119 B
D
auto elseifchain()
|
|
{
|
|
bool a,b,c;
|
|
|
|
if (a)
|
|
{
|
|
}
|
|
else if (b)
|
|
{
|
|
}
|
|
else if (c)
|
|
{
|
|
}
|
|
}
|