astnorm icon indicating copy to clipboard operation
astnorm copied to clipboard

rewrite if/else to a switch

Open quasilyte opened this issue 7 years ago • 0 comments

Before:

if a {
} else if b {
}

After:

switch {
case a:
case b:
}

quasilyte avatar Jan 29 '19 13:01 quasilyte