okkezSS
1
In IRB, or saved as a program from Scite, put in something like:
puts(MATH::PI)
response is always " Uninitialized constant MATH(NameError)
How can I tell if I have the MATH module in my installation? If I don’t
have it, how do I fix that? Thanks in advance.
sponge
3
On Tue, Nov 23, 2010 at 1:09 PM, Charles Agriesti
[email protected]wrote:
Posted via http://www.ruby-forum.com/.
You could do something like this.
Object.constants.grep(/math/i) # => [:Math]
sponge
4
Sam D. wrote in post #963414:
Capitalisation issue?
…
Sam
Doh! Thanks. Can’t believe I did that.