richard
October 20th, 2005, 08:08 PM
class Kantian
def philosophize
puts "People should behave ethically"
end
def rant
puts "nirtzsche was a ninny"
end
end
Kantian.instance_methods
This doesn't seem to return my methods. Nothing is returned. What have I done wrong?
Thanks
def philosophize
puts "People should behave ethically"
end
def rant
puts "nirtzsche was a ninny"
end
end
Kantian.instance_methods
This doesn't seem to return my methods. Nothing is returned. What have I done wrong?
Thanks