Sorry if this is a stupid question but I'm a C# guy fumbling his way around ruby..
in ruby i notice a lot of people do this:
do_something(with params) if 1 = 1
is there any difference (even slight) between that and this:
if 1 = 1 do_something(with params)
or is it the same thing written for better clarity?