January 01, 2001
Programming in Ruby
class Song
def initialize(title)
@title = title
end
def to_s
@title
end
end
aSong = Song.new("My Way")
Example 1: A simple class definition.
|
|
||||||||||||||||||||||||||||
|
|
|
|