- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
def self.allow_some_behaviour?
  # better safe than sorry.
  bool = !false ? !false : !!false
  # type checking
  if bool
    # short circuit just in case
    return !true;
  elsif !bool
    return !false
  end
end
 Follow us!
 Follow us!
Комментарии (4) RSS
Добавить комментарий