±
±èÁØ¿µ
[Note: parts of this message were removed to make it a legal post.]
hi, everyone.
I have the following codes.
m = Hash.new("merong")
m["b"] = "babo"
def func
begin
m["a"] = "merong"
rescue => e
puts e
end
end
func
exception is
undefined local variable or method `m' for main:Object
Could I know the reason this was caused??
hi, everyone.
I have the following codes.
m = Hash.new("merong")
m["b"] = "babo"
def func
begin
m["a"] = "merong"
rescue => e
puts e
end
end
func
exception is
undefined local variable or method `m' for main:Object
Could I know the reason this was caused??