Don't use the `true` and `false` keywords. Use: * `!p` for `true` (thanks, histocrat!) * `!0` for `false`. If all you need is a falsy value, then you can simply use `p` (which returns `nil`). to save some chars.