Can someone show me a simple class and method, then show me how to
initialize and call the method?
Thanks,
Mike
···
--
Posted via http://www.ruby-forum.com/.
Can someone show me a simple class and method, then show me how to
initialize and call the method?
Thanks,
Mike
--
Posted via http://www.ruby-forum.com/.
class Mike
def learns_ruby
puts "woohoo!"
end
end
mike = Mike.new
mike.learns_ruby
On Fri, Feb 4, 2011 at 4:53 PM, Mike 1. <mike17931793@gmail.com> wrote:
Can someone show me a simple class and method, then show me how to
initialize and call the method?Thanks,
Mike
--
Posted via http://www.ruby-forum.com/\.
Mike 1. wrote in post #979715:
Too simple..
Thanks!
http://www.ruby-doc.org/docs/ProgrammingRuby/
Click on chapter "Classes, Objects, and Variables"
--
Posted via http://www.ruby-forum.com/\.