Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 224 Bytes

if_same_then_else.md

File metadata and controls

15 lines (13 loc) · 224 Bytes

if_same_then_else

What it does

Checks for branches in if blocks that are equivalent.

Why this is bad

This is most likely a copy and paste error.

Example

if foo then
    print(1)
else
    print(1)
end