Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Ruby
structure of a programme
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Robert Klemme, post: 4461051"] You can as well put them into foo/bar.rb and "modules" You can even have attributes in modules. module Bar attr_accessor :name end class Foo include Bar end Foo.new.name = "something" The difference between a module and a class is really very small in Ruby. The main point is that you can have only single inheratance with classes and you cannot inherit a module but you can include (mixin) an arbitrary number of modules. Regards robert [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Ruby
structure of a programme
Top