RosettaCodeData/Task/Conditional-structures/DM/conditional-structures-1.dm

12 lines
161 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
if (condition)
// Do thing, DM uses indentation for control flow.
if (condition)
// Do thing
else if (condition)
// Do thing
else
// Do thing