Displaying 1 result from an estimated 1 matches for "fileyou".
Did you mean:
filerou
2006 Apr 08
1
help : uninitialized constant Song
Hi,
I''m facing the following issue.
I have a class A in that i tried instantiating another class B.
but got uninitialized constant B error..Any idea how to over come this.
Here is my code.
--------------------
class SongList
#initialize the array
def initialize
@songs=Array.new
end
def aSong(aSong)
@songs.push(aSong)
self
end