Revision: 13912
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at May 12, 2009 05:52 by kungfoo
Initial Code
if (!check_part(baz)) then
# do something
end
def check_part(foo)
if (foo) then
return true
else
return false
end
end
# why not just write this:
unless baz
# do something
end
Initial URL
Initial Description
WTF!
Initial Title
Redundant boolean logic 1.0
Initial Tags
Initial Language
Ruby