11 lines
161 B
Text
11 lines
161 B
Text
if (condition)
|
|
// Do thing, DM uses indentation for control flow.
|
|
|
|
if (condition)
|
|
// Do thing
|
|
|
|
else if (condition)
|
|
// Do thing
|
|
|
|
else
|
|
// Do thing
|