(no subject)
Dec. 30th, 2010 08:31 pm![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
if boolean_value then
some_function(false)
else
some_function(true)
end
or
some_function(not boolean_value)
hm.
if boolean_value then
some_function(false)
else
some_function(true)
end
some_function(not boolean_value)