show/hide this revision's text 2 typo

Junctions

Compare

do_something() if $foo == 1 or $foo == 2 or $foo == 4 or $foo == 8

with

do_something() if $foo == any(1,2,4,8)

The latter is better by any standard.

show/hide this revision's text 1

Junctions

Compare

do_something() if $foo == 1 or $foo == 2 or $foo = 4 or $foo = 8

with

do_something() if $foo == any(1,2,4,8)

The latter is better by any standard.