Class: TrueClass

Inherits:
Object
  • Object
show all
Defined in:
lib/acme/heisenberg.rb

Instance Method Summary collapse

Instance Method Details

#inspectObject



9
10
11
# File 'lib/acme/heisenberg.rb', line 9

def inspect
  "#{to_s}"
end

#to_sObject



6
7
8
# File 'lib/acme/heisenberg.rb', line 6

def to_s
  rand(0..1) == 1 ? "true" : "false"
end