|
Re: Do you use ternary operators in your code?
I also perfer to use x = (y > 5);
it just seems like such a waste to type
if (y > 5){
x =1;
} else {
x = 0;
}
__________________
Help Microsoft stop piracy. Use Linux!
I have three gmail invitations, message me if you want one
|