Hacker News new | ask | show | jobs
by SirusCodes 480 days ago
Someone on X suggested to make it logically reverse, so true would be false and visa versa.

We can go ahead and make + behave as - and similarly for other operators.

1 comments

Do you want to lie to your users, or do you just want to use unconventional operators? If the latter, you could consider using something like ruby's `unless`.

(the number of times I've noticed code that does `unless !some_condition`... which is of course just the same thing as `if some_condition`)

Makes sense; I need to think about which would be better.