Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 414 Bytes

IfElseDuplicatedCodeBlock.md

File metadata and controls

20 lines (16 loc) · 414 Bytes

Duplicated code blocks in If...Then...ElseIf... statements (IfElseDuplicatedCodeBlock)

Description

If...Then...ElseIf... statement should not have duplicated code blocks.

Examples

If p = 0 Then
    t = 0;
ElseIf p = 1 Then
    t = 1;
ElseIf p = 2 Then
    t = 1;
Else
    t = -1;
EndIf;